diff src/video/quartz/SDL_QuartzGL.m @ 1177:e967ab22e6fd

SDL_GL_LoadLibrary() was returning 1, and not 0, to signify "success" on the Quartz target...fixed this to match the documented behaviour.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 20 Nov 2005 23:59:26 +0000
parents 72c6c3e5bb85
children 49d3efec6651
line wrap: on
line diff
--- a/src/video/quartz/SDL_QuartzGL.m	Sat Nov 19 18:57:00 2005 +0000
+++ b/src/video/quartz/SDL_QuartzGL.m	Sun Nov 20 23:59:26 2005 +0000
@@ -169,7 +169,7 @@
 
 int    QZ_GL_LoadLibrary    (_THIS, const char *location) {
     this->gl_config.driver_loaded = 1;
-    return 1;
+    return 0;
 }
 
 void*  QZ_GL_GetProcAddress (_THIS, const char *proc) {