- replaced YES/NO with true/false
[supertux.git] / src / globals.cpp
1 //
2 // C Implementation: globals
3 //
4 // Description:
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #include "globals.h"
14
15 /** The datadir prefix prepended when loading game data file */
16 std::string datadir;
17
18 SDL_Surface * screen;
19 text_type black_text, gold_text, blue_text, red_text, yellow_nums, white_text, white_small_text, white_big_text;
20
21 bool use_gl;
22 bool use_joystick; 
23 bool use_fullscreen;
24 bool debug_mode;
25 bool show_fps;
26
27 int joystick_num = 0; 
28 char* level_startup_file = 0;
29 bool launch_worldmap_mode = false;
30
31 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
32 char *st_dir, *st_save_dir;
33
34 SDL_Joystick * js;
35
36