浏览代码

Fix incorrect cursor position

When reactivating the cursor its position was updated visually but not
internally which caused glfwGetCursorPos to return wrong values.
Niklas Behrens 12 年之前
父节点
当前提交
a55c3f48eb
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/input.c

+ 5 - 0
src/input.c

@@ -55,7 +55,12 @@ static void setCursorMode(_GLFWwindow* window, int newMode)
     if (window == _glfw.focusedWindow)
     {
         if (oldMode == GLFW_CURSOR_DISABLED)
+        {
+            window->cursorPosX = _glfw.cursorPosX;
+            window->cursorPosY = _glfw.cursorPosY;
+
             _glfwPlatformSetCursorPos(window, _glfw.cursorPosX, _glfw.cursorPosY);
+        }
         else if (newMode == GLFW_CURSOR_DISABLED)
         {
             int width, height;