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: https://svn.code.sf.net/p/freeglut/code/trunk@835 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
fayjf 2009-11-04 00:38:55 +00:00
parent 0027c2521f
commit 23c2780aab

View File

@ -162,7 +162,7 @@ void fgSetCursor ( SFG_Window *window, int cursorID )
* Joe Krahn is re-writing the following code. * Joe Krahn is re-writing the following code.
*/ */
/* Set the cursor AND change it for this window class. */ /* 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) \ # define MAP_CURSOR(a,b) \
case a: \ case a: \
SetCursor( LoadCursor( NULL, b ) ); \ SetCursor( LoadCursor( NULL, b ) ); \