Use left facing arrow instead of right facing arrow for system cursor.

This commit is contained in:
Michael Sartain 2013-02-05 12:09:59 -08:00
parent 9c258124d5
commit f398faa548

View file

@ -230,9 +230,9 @@ X11_CreateSystemCursor(SDL_SystemCursor id)
default:
SDL_assert(0);
return NULL;
/* X Font Cursors reference:
http://tronche.com/gui/x/xlib/appendix/b/ */
case SDL_SYSTEM_CURSOR_ARROW: shape = XC_arrow; break;
// X Font Cursors reference:
// http://tronche.com/gui/x/xlib/appendix/b/
case SDL_SYSTEM_CURSOR_ARROW: shape = XC_left_ptr; break;
case SDL_SYSTEM_CURSOR_IBEAM: shape = XC_xterm; break;
case SDL_SYSTEM_CURSOR_WAIT: shape = XC_watch; break;
case SDL_SYSTEM_CURSOR_CROSSHAIR: shape = XC_tcross; break;