Added mintty/msvcrt fix to events test.

This commit is contained in:
Camilla Berglund 2013-04-17 15:31:20 +02:00
parent e9712739ba
commit 1c4f7525d5

View File

@ -417,8 +417,13 @@ int main(void)
printf("Main loop starting\n");
while (!glfwWindowShouldClose(window))
{
glfwWaitEvents();
// Workaround for an issue with msvcrt and mintty
fflush(stdout);
}
glfwTerminate();
exit(EXIT_SUCCESS);
}