Browse Source

Better Mac OS X build fix - actually match the SDK OpenGL headers.

Sam Lantinga 11 years ago
parent
commit
5a752c3aa7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/SDL_opengl_glext.h

+ 2 - 2
include/SDL_opengl_glext.h

@@ -466,8 +466,8 @@ GLAPI void APIENTRY glBlendEquation (GLenum mode);
 #define GL_VERSION_1_5 1
 #include <stddef.h>
 #ifdef __MACOSX__
-typedef ssize_t GLsizeiptr;
-typedef ssize_t GLintptr;
+typedef long GLsizeiptr;
+typedef long GLintptr;
 #else
 typedef ptrdiff_t GLsizeiptr;
 typedef ptrdiff_t GLintptr;