Commit f38c0e72 authored by Ryan C. Gordon's avatar Ryan C. Gordon

SDL_GL_LoadLibrary() was returning 1, and not 0, to signify "success" on the

 Quartz target...fixed this to match the documented behaviour.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401180
parent d8c36bac
...@@ -169,7 +169,7 @@ void QZ_TearDownOpenGL (_THIS) { ...@@ -169,7 +169,7 @@ void QZ_TearDownOpenGL (_THIS) {
int QZ_GL_LoadLibrary (_THIS, const char *location) { int QZ_GL_LoadLibrary (_THIS, const char *location) {
this->gl_config.driver_loaded = 1; this->gl_config.driver_loaded = 1;
return 1; return 0;
} }
void* QZ_GL_GetProcAddress (_THIS, const char *proc) { void* QZ_GL_GetProcAddress (_THIS, const char *proc) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment