frontend: initial cheats support
[pcsx_rearmed.git] / frontend / menu.h
CommitLineData
3c70c47b 1void menu_init(void);
2void menu_prepare_emu(void);
3void menu_loop(void);
201c21e2 4void menu_finish(void);
3c70c47b 5
bd6267e6 6void menu_notify_mode_change(int w, int h, int bpp);
ab423939 7void menu_set_filter_list(void *filters);
bd6267e6 8
9enum opts {
10 OPT_SHOWFPS = 1 << 0,
11 OPT_SHOWCPU = 1 << 1,
bce6b056 12 OPT_NO_FRAMELIM = 1 << 2,
90f1d26c 13 OPT_SHOWSPU = 1 << 3,
4c08b9e7 14 OPT_TSGUN_NOTRIGGER = 1 << 4,
bd6267e6 15};
16
221be40d 17extern int g_opts;
a72ac803 18extern int soft_scaling, analog_deadzone;
ab423939 19extern int filter;