frontend: commit some debug code
[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,
bd6267e6 12};
13
14extern int g_opts;