use picofe menu, move generic code out of gp2x/
[fceu.git] / drivers / common / settings.h
... / ...
CommitLineData
1typedef struct {
2 int turbo_rate_add; // 8.24 int
3 int sound_rate; // in Hz
4 int showfps;
5 int frameskip; // -1 ~ auto, >=0 ~ count
6 int sstate_confirm;
7 int region_force; // 0 ~ off, 1 ~ NTSC, 2 ~ PAL
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
14 int cpuclock;
15 int mmuhack;
16 int ramtimings;
17 int perfect_vsync;
18} DSETTINGS;
19
20extern DSETTINGS Settings;
21