Renamed window close request variable.

This commit is contained in:
Camilla Berglund
2010-09-16 06:02:44 +02:00
parent f06489d6cb
commit 867e747add
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -56,7 +56,7 @@
- (BOOL)windowShouldClose:(id)sender
{
window->closed = GL_TRUE;
window->closeRequested = GL_TRUE;
return NO;
}
@@ -113,7 +113,7 @@
_GLFWwindow* window;
for (window = _glfwLibrary.windowListHead; window; window = window->next)
window->closed = GL_TRUE;
window->closeRequested = GL_TRUE;
return NSTerminateCancel;
}