X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsettings.h;h=a8f5aa3658d3e8a4b5bb4ebad21bc9162f628d66;hb=166019baeee39e3867ecf6c4eddd0855dc3507a4;hp=acc8c91e280b1f1c149c875e6329687a209cf4cf;hpb=5e11cea96160bd958c1b271940bf97ecfa257b15;p=virtualjaguar diff --git a/src/settings.h b/src/settings.h index acc8c91..a8f5aa3 100644 --- a/src/settings.h +++ b/src/settings.h @@ -28,13 +28,15 @@ struct VJSettings bool useOpenGL; uint32 glFilter; bool hardwareTypeAlpine; + bool audioEnabled; uint32 frameSkip; uint32 renderType; + bool allowWritesToROM; // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, * - uint16 p1KeyBindings[21]; - uint16 p2KeyBindings[21]; + uint32 p1KeyBindings[21]; + uint32 p2KeyBindings[21]; // Paths @@ -42,6 +44,8 @@ struct VJSettings char jagBootPath[MAX_PATH]; char CDBootPath[MAX_PATH]; char EEPROMPath[MAX_PATH]; + char alpineROMPath[MAX_PATH]; + char absROMPath[MAX_PATH]; }; // Render types @@ -50,8 +54,8 @@ enum { RT_NORMAL = 0, RT_TV = 1 }; // Exported functions -void LoadVJSettings(void); -void SaveVJSettings(void); +//void LoadVJSettings(void); +//void SaveVJSettings(void); // Exported variables