use picofe menu, move generic code out of gp2x/
[fceu.git] / drivers / common / settings.h
CommitLineData
35868d35 1typedef struct {
989672f4 2 int turbo_rate_add; // 8.24 int
3 int sound_rate; // in Hz
b2b95d2e 4 int showfps;
b2b95d2e 5 int frameskip; // -1 ~ auto, >=0 ~ count
6 int sstate_confirm;
989672f4 7 int region_force; // 0 ~ off, 1 ~ NTSC, 2 ~ PAL
4a2a617a 8 int gamma;
9 int accurate_mode;
10 // gp2x specific
11 int KeyBinds[32];
12 int JoyBinds[4][32];
13 int scaling; // unscaled=0, hw_hor, hw_hor_vert, sw_hor
b2b95d2e 14 int cpuclock;
15 int mmuhack;
16 int ramtimings;
7b356ee3 17 int perfect_vsync;
35868d35 18} DSETTINGS;
19
20extern DSETTINGS Settings;
21