1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-23 02:38:52 -05:00

Removed C99-ism.

This commit is contained in:
Camilla Berglund 2013-06-09 11:45:26 +02:00
parent 770daa19c8
commit 742a577230

View File

@ -78,11 +78,12 @@ static int compareVideoModes(const void* firstPtr, const void* secondPtr)
static int refreshVideoModes(_GLFWmonitor* monitor)
{
int modeCount;
GLFWvidmode* modes;
if (monitor->modes)
return GL_TRUE;
GLFWvidmode* modes = _glfwPlatformGetVideoModes(monitor, &modeCount);
modes = _glfwPlatformGetVideoModes(monitor, &modeCount);
if (!modes)
return GL_FALSE;