1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-23 10:48:51 -05:00

Formatting.

This commit is contained in:
Camilla Berglund 2012-01-30 22:32:14 +01:00
parent 1ddafc25a6
commit 7e470518ba

View File

@ -1190,10 +1190,10 @@ static void processSingleEvent(void)
fprintf(stderr, "Cannot find GLFW window structure for EnterNotify event\n");
return;
}
if(window->cursorMode == GLFW_CURSOR_HIDDEN)
{
if (window->cursorMode == GLFW_CURSOR_HIDDEN)
hideMouseCursor(window);
}
_glfwInputCursorEnter(window);
break;
}
@ -1207,7 +1207,9 @@ static void processSingleEvent(void)
fprintf(stderr, "Cannot find GLFW window structure for LeaveNotify event\n");
return;
}
showMouseCursor(window);
_glfwInputCursorLeave(window);
break;
}