1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Fixed sign mismatch.

This commit is contained in:
Camilla Berglund 2010-11-17 14:40:17 +01:00
parent b29c4bae53
commit 3d951c3f5b

View File

@ -58,7 +58,7 @@ void _glfwParseGLVersion(int* major, int* minor, int* rev)
if (!version)
return;
if (strncmp(version, glesPrefix, strlen(glesPrefix)) == 0)
if (strncmp((const char*) version, glesPrefix, strlen(glesPrefix)) == 0)
{
// The version string on OpenGL ES has a prefix before the version
// number, so we skip past it and then continue as normal