Use left facing arrow instead of right facing arrow for system cursor.
This commit is contained in:
parent
9c258124d5
commit
f398faa548
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue