Skip to content

Commit

Permalink
Better Mac OS X build fix - actually match the SDK OpenGL headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 19, 2014
1 parent 4b8f753 commit 5a752c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SDL_opengl_glext.h
Expand Up @@ -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;
Expand Down

0 comments on commit 5a752c3

Please sign in to comment.