mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
return empty string for glGetString by default .. was returning 0 but efence complained
This commit is contained in:
parent
38f68330bb
commit
0ff949fdef
1 changed files with 1 additions and 1 deletions
|
@ -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 "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue