From 24fcc4c83143dfcfc68b0c4a20f32cdf706be834 Mon Sep 17 00:00:00 2001 From: "John F. Fay" Date: Wed, 4 Nov 2009 00:38:55 +0000 Subject: [PATCH] Adding a check for mingw64 in "freeglut_cursor.c" per e-mail from Sisyphus dated Thu, 29 Oct 2009 13:13:18 +1100 git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@835 7f0cb862-5218-0410-a997-914c9d46530a --- src/freeglut_cursor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freeglut_cursor.c b/src/freeglut_cursor.c index 93b6b20..0d48e99 100644 --- a/src/freeglut_cursor.c +++ b/src/freeglut_cursor.c @@ -162,7 +162,7 @@ void fgSetCursor ( SFG_Window *window, int cursorID ) * Joe Krahn is re-writing the following code. */ /* Set the cursor AND change it for this window class. */ -#if _MSC_VER <= 1200 +#if !defined(__MINGW64__) && _MSC_VER <= 1200 # define MAP_CURSOR(a,b) \ case a: \ SetCursor( LoadCursor( NULL, b ) ); \ -- 1.7.10.4