mirror of
https://github.com/glfw/glfw.git
synced 2026-09-22 16:52:57 +00:00
Removed C99-ism.
This commit is contained in:
+2
-1
@@ -78,11 +78,12 @@ static int compareVideoModes(const void* firstPtr, const void* secondPtr)
|
|||||||
static int refreshVideoModes(_GLFWmonitor* monitor)
|
static int refreshVideoModes(_GLFWmonitor* monitor)
|
||||||
{
|
{
|
||||||
int modeCount;
|
int modeCount;
|
||||||
|
GLFWvidmode* modes;
|
||||||
|
|
||||||
if (monitor->modes)
|
if (monitor->modes)
|
||||||
return GL_TRUE;
|
return GL_TRUE;
|
||||||
|
|
||||||
GLFWvidmode* modes = _glfwPlatformGetVideoModes(monitor, &modeCount);
|
modes = _glfwPlatformGetVideoModes(monitor, &modeCount);
|
||||||
if (!modes)
|
if (!modes)
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user