mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 09:01:46 +00:00
Make resetMouseCursor consistent with setCursorMode
This commit is contained in:
parent
1ba8fd05c0
commit
662958ef11
@ -54,7 +54,7 @@ static void resetMouseCursor(_GLFWwindow *window)
|
|||||||
{
|
{
|
||||||
int width, height;
|
int width, height;
|
||||||
_glfwPlatformGetWindowSize(window, &width, &height);
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
||||||
_glfwPlatformSetCursorPos(window, width / 2, height / 2);
|
_glfwPlatformSetCursorPos(window, width / 2.0, height / 2.0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user