Fixed building for Android

This commit is contained in:
Sam Lantinga 2011-02-03 01:30:28 -08:00
parent 5689d8ef80
commit 6ddcc36edf
2 changed files with 5 additions and 2 deletions

View file

@ -97,7 +97,7 @@ typedef struct
/* OpenGL ES functions */
#define SDL_PROC(ret,func,params) ret (APIENTRY *func) params;
#include "SDL_glesfuncs.h"
#include "../../video/SDL_glesfuncs.h"
#undef SDL_PROC
} GLES_RenderData;
@ -154,7 +154,7 @@ GLES_LoadFunctions(GLES_RenderData * data)
#define SDL_PROC(ret,func,params) \
data->func = func;
#include "SDL_glesfuncs.h"
#include "../../video/SDL_glesfuncs.h"
#undef SDL_PROC
return 0;