X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fsettings.h;h=2a698f9e7e5bdbdbebf95f12982257aa750ed0e6;hb=c0001155bc0909da61f6c849c0be9b16e9b7f4b6;hp=1fcca6132c4c8392b30a481dfccf6ac5c7861ef9;hpb=eeb2935c12ef41a63049126748c2574b324403a5;p=apple2 diff --git a/src/settings.h b/src/settings.h index 1fcca61..2a698f9 100755 --- a/src/settings.h +++ b/src/settings.h @@ -12,26 +12,26 @@ #else #include // for MAX_PATH on MinGW/Darwin #endif -#include "types.h" +#include // Settings struct struct Settings { bool useJoystick; - int32 joyport; // Joystick port + int32_t joyport; // Joystick port bool hardwareTypeNTSC; // Set to false for PAL bool fullscreen; bool useOpenGL; - uint32 glFilter; - uint32 frameSkip; - uint32 renderType; + uint32_t glFilter; + uint32_t frameSkip; + uint32_t renderType; bool autoStateSaving; // Auto-state loading/saving on entry/exit // Keybindings in order of U, D, L, R, C, B, A, Op, Pa, 0-9, #, * - uint16 p1KeyBindings[21]; - uint16 p2KeyBindings[21]; + uint16_t p1KeyBindings[21]; + uint16_t p2KeyBindings[21]; // Paths @@ -58,3 +58,4 @@ void SaveSettings(void); extern Settings settings; #endif // __SETTINGS_H__ +