mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 09:01:46 +00:00
Corrected type of cursor coordinates.
This commit is contained in:
parent
7405bc48cd
commit
7423cfa5bf
@ -539,7 +539,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
||||
if (newCursorX != window->win32.oldCursorX ||
|
||||
newCursorY != window->win32.oldCursorY)
|
||||
{
|
||||
int x, y;
|
||||
double x, y;
|
||||
|
||||
if (window->cursorMode == GLFW_CURSOR_CAPTURED)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user