1
0
Fork 0

Win32 typos crept in during the patch. Fix from Frederic Bouvier.

This commit is contained in:
andy 2004-04-01 15:14:34 +00:00
parent a3b6a593d6
commit db79413b6e

View file

@ -239,13 +239,13 @@ void TurnCursorOn( void )
#if defined(WIN32) #if defined(WIN32)
switch (mouse_mode) { switch (mouse_mode) {
case MOUSE_POINTER: case MOUSE_POINTER:
fgSetMouseCursor(MOUSE_CURSOR_INHERIT); fgSetMouseCursor(MOUSE_CURSOR_POINTER);
break; break;
case MOUSE_YOKE: case MOUSE_YOKE:
fgSetMouseCursor(MOUSE_CURSOR_CROSSHAIR); fgSetMouseCursor(MOUSE_CURSOR_CROSSHAIR);
break; break;
case MOUSE_VIEW: case MOUSE_VIEW:
fgSetMouseCursor(MOUSE_CURSOR_LEFT_RIGHT); fgSetMouseCursor(MOUSE_CURSOR_LEFTRIGHT);
break; break;
} }
#endif #endif