Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Use left facing arrow instead of right facing arrow for system cursor.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Sartain committed Feb 5, 2013
1 parent d639bad commit 974426c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/video/x11/SDL_x11mouse.c
Expand Up @@ -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;
Expand Down

0 comments on commit 974426c

Please sign in to comment.