X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Finclude%2Fsettings.h;h=e8a75369e224ec6b5ffb0378b37291e8f8cecbe8;hb=73ca0f1c81b606de50838deb1e464cc95a1e15cc;hp=0a5fd23ea4598f780c9c46fb39671bea29678108;hpb=59ca39a29be645918de45bd144865ba6487f4009;p=virtualjaguar diff --git a/src/include/settings.h b/src/include/settings.h index 0a5fd23..e8a7536 100644 --- a/src/include/settings.h +++ b/src/include/settings.h @@ -10,6 +10,7 @@ #include #define MAX_PATH _POSIX_PATH_MAX #endif +#include "types.h" // Settings struct @@ -24,6 +25,8 @@ struct VJSettings bool fullscreen; bool useOpenGL; uint32 glFilter; + bool hardwareTypeAlpine; + uint32 frameSkip; // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, * uint16 p1KeyBindings[21]; @@ -34,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);