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

Formatting.

This commit is contained in:
Camilla Berglund 2012-08-12 16:21:06 +02:00
parent 98c1c2fbf2
commit 6c449e6e8f

View File

@ -467,7 +467,7 @@ static _GLFWwindow* findWindow(Window handle)
//========================================================================
// Get and process next X event (called by _glfwPlatformPollEvents)
// Process the specified X event
//========================================================================
static void processEvent(XEvent *event)
@ -1176,23 +1176,24 @@ void _glfwPlatformPollEvents(void)
}
}
//========================================================================
// Wait for new window and input events
//========================================================================
void _glfwPlatformWaitEvents(void)
{
fd_set set;
int fd;
fd_set fds;
fd = ConnectionNumber(_glfwLibrary.X11.display);
FD_ZERO(&set);
FD_SET(fd, &set);
FD_ZERO(&fds);
FD_SET(fd, &fds);
XFlush(_glfwLibrary.X11.display);
if(select(fd+1, &set, NULL, NULL, NULL) > 0)
if (select(fd + 1, &fds, NULL, NULL, NULL) > 0)
_glfwPlatformPollEvents();
}