equal
deleted
inserted
replaced
228 switch(id) |
228 switch(id) |
229 { |
229 { |
230 default: |
230 default: |
231 SDL_assert(0); |
231 SDL_assert(0); |
232 return NULL; |
232 return NULL; |
233 /* X Font Cursors reference: |
233 // X Font Cursors reference: |
234 http://tronche.com/gui/x/xlib/appendix/b/ */ |
234 // http://tronche.com/gui/x/xlib/appendix/b/ |
235 case SDL_SYSTEM_CURSOR_ARROW: shape = XC_arrow; break; |
235 case SDL_SYSTEM_CURSOR_ARROW: shape = XC_left_ptr; break; |
236 case SDL_SYSTEM_CURSOR_IBEAM: shape = XC_xterm; break; |
236 case SDL_SYSTEM_CURSOR_IBEAM: shape = XC_xterm; break; |
237 case SDL_SYSTEM_CURSOR_WAIT: shape = XC_watch; break; |
237 case SDL_SYSTEM_CURSOR_WAIT: shape = XC_watch; break; |
238 case SDL_SYSTEM_CURSOR_CROSSHAIR: shape = XC_tcross; break; |
238 case SDL_SYSTEM_CURSOR_CROSSHAIR: shape = XC_tcross; break; |
239 case SDL_SYSTEM_CURSOR_WAITARROW: shape = XC_watch; break; |
239 case SDL_SYSTEM_CURSOR_WAITARROW: shape = XC_watch; break; |
240 case SDL_SYSTEM_CURSOR_SIZENWSE: shape = XC_fleur; break; |
240 case SDL_SYSTEM_CURSOR_SIZENWSE: shape = XC_fleur; break; |