Browse Source

Changed AppleGLGetProcAddress signature in gl_magnum.c

Changed const GLubyte* name parameter to const char* name parameter
Fix issue #22: fixed 820 warnings on OS X builds
pull/23/head
Miguel Martin 13 years ago
parent
commit
1adfc48714
  1. 2
      external/OpenGL/GL/gl_magnum.c

2
external/OpenGL/GL/gl_magnum.c vendored

@ -6,7 +6,7 @@
#if defined(__APPLE__)
#include <mach-o/dyld.h>
static void* AppleGLGetProcAddress (const GLubyte *name)
static void* AppleGLGetProcAddress (const char* name)
{
static const struct mach_header* image = NULL;
NSSymbol symbol;

Loading…
Cancel
Save