| 1 | typedef 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; // gp2x: unscaled=0, hw_hor, hw_hor_vert, sw_hor |
| 14 | int cpuclock; |
| 15 | int mmuhack; |
| 16 | int ramtimings; |
| 17 | int perfect_vsync; |
| 18 | // pandora |
| 19 | int hw_filter; |
| 20 | } DSETTINGS; |
| 21 | |
| 22 | extern DSETTINGS Settings; |
| 23 | |