Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed building for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 3, 2011
1 parent 7413650 commit 62b2d38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Android.mk
Expand Up @@ -30,6 +30,9 @@ LOCAL_SRC_FILES := \
$(wildcard $(LOCAL_PATH)/src/joystick/android/*.c) \
$(wildcard $(LOCAL_PATH)/src/loadso/dlopen/*.c) \
$(wildcard $(LOCAL_PATH)/src/power/*.c) \
$(wildcard $(LOCAL_PATH)/src/render/*.c) \
$(wildcard $(LOCAL_PATH)/src/render/opengles/*.c) \
$(wildcard $(LOCAL_PATH)/src/render/software/*.c) \
$(wildcard $(LOCAL_PATH)/src/stdlib/*.c) \
$(wildcard $(LOCAL_PATH)/src/thread/*.c) \
$(wildcard $(LOCAL_PATH)/src/thread/pthread/*.c) \
Expand Down
4 changes: 2 additions & 2 deletions src/render/opengles/SDL_renderer_gles.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 62b2d38

Please sign in to comment.