# HG changeset patch # User Ryan C. Gordon # Date 1132531166 0 # Node ID e967ab22e6fd9964b21f8ff997cddb7a03b22d25 # Parent dd2a8deeb26d3c546bf25d2fc00414c38ff45fdf SDL_GL_LoadLibrary() was returning 1, and not 0, to signify "success" on the Quartz target...fixed this to match the documented behaviour. diff -r dd2a8deeb26d -r e967ab22e6fd src/video/quartz/SDL_QuartzGL.m --- 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) {