fix looping for normal .ogg
[supertux.git] / src / gameconfig.hpp
index ab639d8..f4cb884 100644 (file)
@@ -26,7 +26,7 @@ class Config
 public:
   Config();
   ~Config();
-  
+
   void load();
   void save();
 
@@ -36,15 +36,20 @@ public:
    */
   int screenwidth;
   int screenheight;
+  float aspect_ratio;
 
   bool use_fullscreen;
+  bool try_vsync;
   bool show_fps;
   bool sound_enabled;
   bool music_enabled;
-  bool cheats_enabled;
+  bool console_enabled;
+
+  int random_seed;            // initial random seed.  0 ==> set from time()
 
   /** this variable is set if supertux should start in a specific level */
   std::string start_level;
+  bool enable_script_debugger;
   std::string start_demo;
   std::string record_demo;
 };