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

Shortened window struct member.

This commit is contained in:
Camilla Berglund 2013-01-17 20:31:16 +01:00
parent bc150ac9c8
commit 38aef53b0c
2 changed files with 4 additions and 4 deletions

View File

@ -210,7 +210,7 @@ struct _GLFWwindow
GLboolean iconified;
GLboolean resizable;
GLboolean visible;
GLboolean closeRequested;
GLboolean closed;
void* userPointer;
GLFWvidmode videoMode;
_GLFWmonitor* monitor;

View File

@ -191,9 +191,9 @@ void _glfwInputWindowDamage(_GLFWwindow* window)
void _glfwInputWindowCloseRequest(_GLFWwindow* window)
{
if (window->callbacks.close)
window->closeRequested = window->callbacks.close((GLFWwindow*) window);
window->closed = window->callbacks.close((GLFWwindow*) window);
else
window->closeRequested = GL_TRUE;
window->closed = GL_TRUE;
}
@ -691,7 +691,7 @@ GLFWAPI int glfwGetWindowParam(GLFWwindow* handle, int param)
case GLFW_ICONIFIED:
return window->iconified;
case GLFW_SHOULD_CLOSE:
return window->closeRequested;
return window->closed;
case GLFW_RESIZABLE:
return window->resizable;
case GLFW_VISIBLE: