- replaced YES/NO with true/false
[supertux.git] / src / globals.h
index da08624..48c2884 100644 (file)
@@ -24,16 +24,20 @@ extern std::string datadir;
 extern SDL_Surface * screen;
 extern text_type black_text, gold_text, white_text, white_small_text, white_big_text, blue_text, red_text, yellow_nums;
 
-extern int use_gl, use_joystick, use_fullscreen, debug_mode, show_fps;
-
+extern bool use_gl;
+extern bool use_joystick;
+extern bool use_fullscreen;
+extern bool debug_mode;
+extern bool show_fps;
+
+/** The number of the joystick that will be use in the game */
+extern int joystick_num;
 extern char* level_startup_file;
 extern bool launch_worldmap_mode;
 
 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
 extern char *st_dir, *st_save_dir;
 
-#ifdef JOY_YES
 extern SDL_Joystick * js;
-#endif
 
 #endif /* SUPERTUX_GLOBALS_H */