]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/settings.h
Fixed software loading to load independently of Jaguar ROM space, added new
[virtualjaguar] / src / settings.h
index e527040803df63731e5c1cde94128c9bf916c56a..26b18e9d18f3ee79668f3b90252c9c17caff4255 100644 (file)
@@ -28,13 +28,15 @@ struct VJSettings
        bool useOpenGL;
        uint32 glFilter;
        bool hardwareTypeAlpine;
+       bool audioEnabled;
        uint32 frameSkip;
        uint32 renderType;
-       
+       bool allowWritesToROM;
+
        // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, *
 
-       uint16 p1KeyBindings[21];
-       uint16 p2KeyBindings[21];
+       uint32 p1KeyBindings[21];
+       uint32 p2KeyBindings[21];
 
        // Paths
 
@@ -42,6 +44,7 @@ struct VJSettings
        char jagBootPath[MAX_PATH];
        char CDBootPath[MAX_PATH];
        char EEPROMPath[MAX_PATH];
+       char alpineROMPath[MAX_PATH];
 };
 
 // Render types
@@ -50,8 +53,8 @@ enum { RT_NORMAL = 0, RT_TV = 1 };
 
 // Exported functions
 
-void LoadVJSettings(void);
-void SaveVJSettings(void);
+//void LoadVJSettings(void);
+//void SaveVJSettings(void);
 
 // Exported variables