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

Fix cursor test event mode message

This commit is contained in:
Camilla Berglund 2015-08-16 14:00:51 +02:00
parent 0db3940cc4
commit 362751e4ef

View File

@ -152,7 +152,7 @@ static void key_callback(GLFWwindow* window, int key, int scancode, int action,
case GLFW_KEY_W: case GLFW_KEY_W:
wait_events = !wait_events; wait_events = !wait_events;
printf("(( %sing for events ))\n", wait_events ? "poll" : "wait"); printf("(( %sing for events ))\n", wait_events ? "wait" : "poll");
break; break;
case GLFW_KEY_T: case GLFW_KEY_T: