1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04: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 cursorCentered;
GLboolean cursorInside; GLboolean cursorInside;
GLboolean cursorHidden; GLboolean cursorHidden;
int oldCursorX, oldCursorY; double oldCursorX, oldCursorY;
} _GLFWwindowWin32; } _GLFWwindowWin32;