X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsettings.h;h=8c2d226821e9fecd5d0c0bc01190fd454805567b;hb=f005034d4a3990efc8e445ce46222ce32600411b;hp=f998b8b6040118bea76dd082be691dfa746b1472;hpb=94e1e961b57f253b760298ab0bae96a7de6d20fa;p=virtualjaguar diff --git a/src/settings.h b/src/settings.h index f998b8b..8c2d226 100644 --- a/src/settings.h +++ b/src/settings.h @@ -1,5 +1,5 @@ // -// SETTINGS.H: Header file +// settings.h: Header file // #ifndef __SETTINGS_H__ @@ -12,29 +12,34 @@ #else #include // for MAX_PATH on MinGW/Darwin #endif -#include "types.h" +#include // Settings struct struct VJSettings { bool useJoystick; - int32 joyport; // Joystick port + int32_t joyport; // Joystick port bool hardwareTypeNTSC; // Set to false for PAL bool useJaguarBIOS; + bool GPUEnabled; bool DSPEnabled; bool usePipelinedDSP; bool fullscreen; bool useOpenGL; - uint32 glFilter; + uint32_t glFilter; bool hardwareTypeAlpine; - uint32 frameSkip; - uint32 renderType; + bool audioEnabled; + uint32_t frameSkip; + uint32_t renderType; + bool allowWritesToROM; + uint32_t biosType; + bool useFastBlitter; // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, * - uint16 p1KeyBindings[21]; - uint16 p2KeyBindings[21]; + uint32_t p1KeyBindings[21]; + uint32_t p2KeyBindings[21]; // Paths @@ -42,22 +47,20 @@ struct VJSettings char jagBootPath[MAX_PATH]; char CDBootPath[MAX_PATH]; char EEPROMPath[MAX_PATH]; + char alpineROMPath[MAX_PATH]; + char absROMPath[MAX_PATH]; }; // Render types enum { RT_NORMAL = 0, RT_TV = 1 }; -// Exported functions +// BIOS types -void LoadVJSettings(void); -void SaveVJSettings(void); +enum { BT_K_SERIES, BT_M_SERIES, BT_STUBULATOR_1, BT_STUBULATOR_2 }; // Exported variables extern VJSettings vjs; -// Temporary vars... -extern bool smoothGLOutput; - #endif // __SETTINGS_H__