frontend: always detect region
[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);
7
8enum opts {
9 OPT_SHOWFPS = 1 << 0,
10 OPT_SHOWCPU = 1 << 1,
bce6b056 11 OPT_NO_FRAMELIM = 1 << 2,
90f1d26c 12 OPT_SHOWSPU = 1 << 3,
4c08b9e7 13 OPT_TSGUN_NOTRIGGER = 1 << 4,
bd6267e6 14};
15
16extern int g_opts;