savedir/datadir neatened up

This commit is contained in:
Albert Cahalan 2009-11-21 09:44:11 +00:00
parent a9b8f6ea1c
commit dd90d90624
4 changed files with 149 additions and 215 deletions

View file

@ -36,7 +36,18 @@ SDL_Cursor *cursor_hand, *cursor_arrow, *cursor_watch,
*cursor_up, *cursor_down, *cursor_tiny, *cursor_crosshair,
*cursor_brush, *cursor_wand, *cursor_insertion, *cursor_rotate;
int no_fancy_cursors, hide_cursor;
#ifdef NOKIA_770
int hide_cursor = 1;
#else
int hide_cursor;
#endif
#if defined(NOKIA_770) || defined(__BEOS__)
// Fancy cursors on BeOS are buggy in SDL
int no_fancy_cursors = 1;
#else
int no_fancy_cursors;
#endif
void do_setcursor(SDL_Cursor * c)
{