Adding a check for mingw64 in "freeglut_cursor.c" per e-mail from Sisyphus dated...
[freeglut] / src / freeglut_cursor.c
index 93b6b20..0d48e99 100644 (file)
@@ -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 ) );                  \