]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/include/settings.h
Minor cleanup (this file will go away soon)
[virtualjaguar] / src / include / settings.h
index 0a5fd23ea4598f780c9c46fb39671bea29678108..bc62fd5abbc09846d85da921fa659ae196299ab4 100644 (file)
@@ -10,6 +10,7 @@
 #include <limits.h>
 #define MAX_PATH               _POSIX_PATH_MAX
 #endif
+#include "types.h"
 
 // Settings struct
 
@@ -24,6 +25,7 @@ struct VJSettings
        bool fullscreen;
        bool useOpenGL;
        uint32 glFilter;
+       bool hardwareTypeAlpine;
 
        // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, *
        uint16 p1KeyBindings[21];
@@ -34,8 +36,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);