Skip to content

Commit

Permalink
Fixes "error: conflicting types for 'GLintptr'"
Browse files Browse the repository at this point in the history
  • Loading branch information
gabomdq committed Aug 25, 2013
1 parent c9c6852 commit 64e6eea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/video/SDL_video.c
Expand Up @@ -39,9 +39,10 @@
#include "SDL_opengles.h"
#endif /* SDL_VIDEO_OPENGL_ES */

#if SDL_VIDEO_OPENGL_ES2
/* GL and GLES2 headers conflict on Linux 32 bits */
#if SDL_VIDEO_OPENGL_ES2 && !SDL_VIDEO_OPENGL
#include "SDL_opengles2.h"
#endif /* SDL_VIDEO_OPENGL_ES2 */
#endif /* SDL_VIDEO_OPENGL_ES2 && !SDL_VIDEO_OPENGL */

#include "SDL_syswm.h"

Expand Down

0 comments on commit 64e6eea

Please sign in to comment.