Make resetMouseCursor consistent with setCursorMode

master
Noel Cower ago%!(EXTRA string=12 years)
parent 1ba8fd05c0
commit 662958ef11
  1. 2
      src/cocoa_window.m

@ -54,7 +54,7 @@ static void resetMouseCursor(_GLFWwindow *window)
{
int width, height;
_glfwPlatformGetWindowSize(window, &width, &height);
_glfwPlatformSetCursorPos(window, width / 2, height / 2);
_glfwPlatformSetCursorPos(window, width / 2.0, height / 2.0);
}
}

Loading…
Cancel
Save