]> Shamusworld >> Repos - stargem2/blobdiff - src/settings.h
Finally fixed problems with demo mode.
[stargem2] / src / settings.h
old mode 100755 (executable)
new mode 100644 (file)
index b1c4cae..4fb12fa
@@ -1,7 +1,6 @@
 //
 // SETTINGS.H: Header file
 //
-
 #ifndef __SETTINGS_H__
 #define __SETTINGS_H__
 
@@ -10,7 +9,7 @@
 #include <limits.h>
 #define MAX_PATH               _POSIX_PATH_MAX
 #else
-#include <stdlib.h>                                                            // for MAX_PATH on MinGW/Darwin
+#include <stdlib.h>                                    // for MAX_PATH on MinGW/Darwin
 #endif
 #include <stdint.h>
 
@@ -24,18 +23,18 @@ enum { S_KEY_FIRE = 0, S_KEY_THRUST, S_KEY_SMARTBOMB, S_KEY_HYPERSPACE, S_KEY_RE
 struct Settings
 {
        bool useJoystick;
-       int32_t joyport;                                                                // Joystick port
-       bool hardwareTypeNTSC;                                          // Set to false for PAL
+       int32_t joyport;                                // Joystick port
+       bool hardwareTypeNTSC;                  // Set to false for PAL
        bool fullscreen;
        bool useOpenGL;
        uint32_t glFilter;
        uint32_t frameSkip;
        uint32_t renderType;
-       bool autoStateSaving;                                           // Auto-state loading/saving on entry/exit
+       bool autoStateSaving;                   // Auto-state loading/saving on entry/exit
 
-       // Keybindings in order of fire, thrust, smartbomb, hyperspace, reverse, up, down, inviso,
-       // 1 player start, 2 player start, left coin, center coin, right coin, auto up, advance,
-       // high score reset, slam switch
+       // Keybindings in order of fire, thrust, smartbomb, hyperspace, reverse,
+       // up, down, inviso, 1 player start, 2 player start, left coin, center
+       // coin, right coin, auto up, advance, high score reset, slam switch
 
        uint16_t keyBindings[21];
 
@@ -48,10 +47,6 @@ struct Settings
        char autoStatePath[MAX_PATH];
 };
 
-// Render types
-
-//enum { RT_NORMAL = 0, RT_TV = 1 };
-
 // Exported functions
 
 void LoadSettings(void);
@@ -62,4 +57,3 @@ void SaveSettings(void);
 extern Settings settings;
 
 #endif // __SETTINGS_H__
-