Changeset 115
- Timestamp:
- 05/06/07 12:29:26 (2 years ago)
- Files:
-
- trunk/src/main-win.c (modified) (1 diff)
- trunk/src/main.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main-win.c
r82 r115 75 75 #define uint unsigned int 76 76 77 #if def WINDOWS77 #if (defined(WINDOWS) && !defined(USE_SDL)) 78 78 79 79 trunk/src/main.c
r85 r115 18 18 19 19 20 #if defined(WIN32_CONSOLE_MODE) || (!defined(MACINTOSH) && !defined(WINDOWS) && !defined(RISCOS)) 20 #if defined(WIN32_CONSOLE_MODE) \ 21 || (!defined(MACINTOSH) && !defined(WINDOWS) && !defined(RISCOS)) \ 22 || defined(USE_SDL) 21 23 22 24 #include "main.h" … … 28 30 static const struct module modules[] = 29 31 { 32 #ifdef USE_SDL 33 { "sdl", help_sdl, init_sdl }, 34 #endif /* USE_SDL */ 35 30 36 #ifdef USE_GTK 31 37 { "gtk", help_gtk, init_gtk }, … … 83 89 { "lfb", help_lfb, init_lfb }, 84 90 #endif /* USE_LFB */ 85 86 #ifdef USE_SDL87 { "sdl", help_sdl, init_sdl },88 #endif /* USE_SDL */89 91 }; 90 92 … … 315 317 316 318 bool done = FALSE; 317 318 319 bool new_game = FALSE; 319 320 320 321 int show_score = 0; 321 322 322 c ptrmstr = NULL;323 const char *mstr = NULL; 323 324 324 325 bool args = TRUE;
