]> Shamusworld >> Repos - virtualjaguar/commitdiff
Added 'Alpine' hardware type
authorShamus Hammons <jlhamm@acm.org>
Fri, 2 Jan 2004 07:14:58 +0000 (07:14 +0000)
committerShamus Hammons <jlhamm@acm.org>
Fri, 2 Jan 2004 07:14:58 +0000 (07:14 +0000)
src/include/settings.h
src/settings.cpp

index 0a5fd23ea4598f780c9c46fb39671bea29678108..c028d6e9c568a14acc76f1515d1f567c809fbb78 100644 (file)
@@ -24,6 +24,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 +35,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);
index a0d5746dfb6499866cf9e24cc17fa0e3de71cac3..6bd628b49427dc7b0162f5bb4795897248d19605 100644 (file)
@@ -90,6 +90,8 @@ void LoadVJSettings(void)
        strcpy(vjs.ROMPath, sdlemu_getval_string("ROMs", "./"));
        CheckForTrailingSlash(vjs.EEPROMPath);
        CheckForTrailingSlash(vjs.ROMPath);
+
+       vjs.hardwareTypeAlpine = false; // No external setting for this yet...
 }
 
 //