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

Fixed editing mistakes.

This commit is contained in:
Camilla Berglund 2011-10-09 17:40:29 +02:00
parent 30ab9e2058
commit de147988f2

View File

@ -1005,13 +1005,13 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
if (_glfwLibrary.activeWindow != window) if (_glfwLibrary.activeWindow != window)
return 0; return 0;
x += newMouseX - window->Win32.oldMouseX; x = newMouseX - window->Win32.oldMouseX;
y += newMouseY - window->Win32.oldMouseY; y = newMouseY - window->Win32.oldMouseY;
} }
else else
{ {
x = newMouseX; x = newMouseX;
x = newMouseY; y = newMouseY;
} }
window->Win32.oldMouseX = newMouseX; window->Win32.oldMouseX = newMouseX;