1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-26 20:28:49 -05:00

Fixed type for cached cursor coords.

This commit is contained in:
Camilla Berglund 2013-04-21 16:28:46 +02:00
parent 6fd396f766
commit ace0a8ef28

View File

@ -155,7 +155,7 @@ typedef struct _GLFWwindowWin32
GLboolean cursorCentered;
GLboolean cursorInside;
GLboolean cursorHidden;
int oldCursorX, oldCursorY;
double oldCursorX, oldCursorY;
} _GLFWwindowWin32;