]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/include/settings.h
Added frameskip support
[virtualjaguar] / src / include / settings.h
index 4ce5e1ff643235269cdce0dcfeb4a9e7b715d150..e8a75369e224ec6b5ffb0378b37291e8f8cecbe8 100644 (file)
@@ -10,6 +10,7 @@
 #include <limits.h>
 #define MAX_PATH               _POSIX_PATH_MAX
 #endif
+#include "types.h"
 
 // Settings struct
 
@@ -20,9 +21,12 @@ struct VJSettings
        bool hardwareTypeNTSC;                                                  // Set to false for PAL
        bool useJaguarBIOS;
        bool DSPEnabled;
+       bool usePipelinedDSP;
        bool fullscreen;
        bool useOpenGL;
-       bool usePipelinedDSP;
+       uint32 glFilter;
+       bool hardwareTypeAlpine;
+       uint32 frameSkip;
 
        // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, *
        uint16 p1KeyBindings[21];
@@ -33,8 +37,14 @@ struct VJSettings
        char jagBootPath[MAX_PATH];
        char CDBootPath[MAX_PATH];
        char EEPROMPath[MAX_PATH];
+
+       // Internal global stuff
+//     uint32 ROMType;
 };
 
+// ROM Types
+//enum { RT_CARTRIDGE, RT_
+
 // Exported functions
 
 void LoadVJSettings(void);