From ace0a8ef28daa8a0564d14af36914b1436c3025b Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 21 Apr 2013 16:28:46 +0200 Subject: [PATCH] Fixed type for cached cursor coords. --- src/win32_platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_platform.h b/src/win32_platform.h index 0fa37170..e1e5ef8c 100644 --- a/src/win32_platform.h +++ b/src/win32_platform.h @@ -155,7 +155,7 @@ typedef struct _GLFWwindowWin32 GLboolean cursorCentered; GLboolean cursorInside; GLboolean cursorHidden; - int oldCursorX, oldCursorY; + double oldCursorX, oldCursorY; } _GLFWwindowWin32;