mirror of
https://github.com/yawut/SDL.git
synced 2026-07-01 00:39:58 -05:00
Use left facing arrow instead of right facing arrow for system cursor.
This commit is contained in:
parent
357652279f
commit
0a917a7d06
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user