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) static void processEvent(XEvent *event)
@ -1176,23 +1176,24 @@ void _glfwPlatformPollEvents(void)
} }
} }
//======================================================================== //========================================================================
// Wait for new window and input events // Wait for new window and input events
//======================================================================== //========================================================================
void _glfwPlatformWaitEvents(void) void _glfwPlatformWaitEvents(void)
{ {
fd_set set;
int fd; int fd;
fd_set fds;
fd = ConnectionNumber(_glfwLibrary.X11.display); fd = ConnectionNumber(_glfwLibrary.X11.display);
FD_ZERO(&set); FD_ZERO(&fds);
FD_SET(fd, &set); FD_SET(fd, &fds);
XFlush(_glfwLibrary.X11.display); XFlush(_glfwLibrary.X11.display);
if(select(fd+1, &set, NULL, NULL, NULL) > 0) if (select(fd + 1, &fds, NULL, NULL, NULL) > 0)
_glfwPlatformPollEvents(); _glfwPlatformPollEvents();
} }