Skip to content

Commit

Permalink
Fixed compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 10, 2018
1 parent 7c36002 commit d5f293a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/opengles2/SDL_render_gles2.c
Expand Up @@ -290,7 +290,7 @@ static int GLES2_LoadFunctions(GLES2_DriverContext * data)
#endif

#if defined __SDL_NOGETPROCADDR__
#define SDL_PROC(ret,func,params) data->func=func;
#define SDL_PROC(ret,func,params) *(void**)&data->func=func;
#else
#define SDL_PROC(ret,func,params) \
do { \
Expand Down

0 comments on commit d5f293a

Please sign in to comment.