return empty string for glGetString by default .. was returning 0 but efence complained

This commit is contained in:
Chris Ison 2002-08-26 19:51:39 +00:00
parent 38f68330bb
commit 0ff949fdef

View file

@ -837,7 +837,7 @@ norm_glGetString (GLenum name)
case GL_VERSION: case GL_VERSION:
return (const GLubyte *) version; return (const GLubyte *) version;
default: default:
return (GLubyte *) 0; return "";
} }
} }