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

Fixed broken call to glfwShowWindow.

This commit is contained in:
Camilla Berglund 2012-08-21 20:32:44 +02:00
parent a2ca095b86
commit 3d2722dc4c

View File

@ -318,7 +318,7 @@ GLFWAPI GLFWwindow glfwCreateWindow(int width, int height,
return GL_FALSE;
}
glfwShowWindow(window, 1); // TODO: consider if this is necessary!
glfwShowWindow(window);
// Cache the actual (as opposed to requested) window parameters
_glfwPlatformRefreshWindowParams(window);