1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-27 04:28:52 -05:00

Formatting.

This commit is contained in:
Camilla Berglund 2012-01-24 18:28:37 +01:00
parent 8f3b21eb81
commit e93ae44ee5

View File

@ -138,9 +138,11 @@ void _glfwInputCursorMotion(_GLFWwindow* window, int x, int y)
} }
if (_glfwLibrary.mousePosCallback) if (_glfwLibrary.mousePosCallback)
{
_glfwLibrary.mousePosCallback(window, _glfwLibrary.mousePosCallback(window,
window->cursorPosX, window->cursorPosX,
window->cursorPosY); window->cursorPosY);
}
} }