X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Finclude%2Fsettings.h;h=c028d6e9c568a14acc76f1515d1f567c809fbb78;hb=766e398deb3576506ce14ee010a1cf7e268dd044;hp=4ce5e1ff643235269cdce0dcfeb4a9e7b715d150;hpb=12436cc55a8d6772560be762bfdd55c29c3a5ff5;p=virtualjaguar diff --git a/src/include/settings.h b/src/include/settings.h index 4ce5e1f..c028d6e 100644 --- a/src/include/settings.h +++ b/src/include/settings.h @@ -20,9 +20,11 @@ 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; // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, * uint16 p1KeyBindings[21]; @@ -33,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);