Formatting.

This commit is contained in:
Camilla Berglund 2012-10-21 16:17:20 +02:00
parent dd941f5ae8
commit d0afa65813

View File

@ -1084,19 +1084,17 @@ void _glfwPlatformRefreshWindowParams(_GLFWwindow* window)
void _glfwPlatformPollEvents(void) void _glfwPlatformPollEvents(void)
{ {
NSEvent* event; for (;;)
do
{ {
event = [NSApp nextEventMatchingMask:NSAnyEventMask NSEvent* event = [NSApp nextEventMatchingMask:NSAnyEventMask
untilDate:[NSDate distantPast] untilDate:[NSDate distantPast]
inMode:NSDefaultRunLoopMode inMode:NSDefaultRunLoopMode
dequeue:YES]; dequeue:YES];
if (event == nil)
break;
if (event) [NSApp sendEvent:event];
[NSApp sendEvent:event];
} }
while (event);
[_glfwLibrary.NS.autoreleasePool drain]; [_glfwLibrary.NS.autoreleasePool drain];
_glfwLibrary.NS.autoreleasePool = [[NSAutoreleasePool alloc] init]; _glfwLibrary.NS.autoreleasePool = [[NSAutoreleasePool alloc] init];