]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/settings.h
Fixed software loading to load independently of Jaguar ROM space, added new
[virtualjaguar] / src / settings.h
index 91ef9f320e308377e65c70d6ebf8b0a82c1eb79e..26b18e9d18f3ee79668f3b90252c9c17caff4255 100644 (file)
@@ -28,29 +28,33 @@ 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
+
        char ROMPath[MAX_PATH];
        char jagBootPath[MAX_PATH];
        char CDBootPath[MAX_PATH];
        char EEPROMPath[MAX_PATH];
-
-       // Internal global stuff
-//     uint32 ROMType;
+       char alpineROMPath[MAX_PATH];
 };
 
-// ROM Types
-//enum { RT_CARTRIDGE, RT_
+// Render types
+
+enum { RT_NORMAL = 0, RT_TV = 1 };
 
 // Exported functions
 
-void LoadVJSettings(void);
-void SaveVJSettings(void);
+//void LoadVJSettings(void);
+//void SaveVJSettings(void);
 
 // Exported variables