cdriso: handle eboot and it's TOC, some refactoring
[pcsx_rearmed.git] / frontend / menu.h
1 void menu_init(void);
2 void menu_prepare_emu(void);
3 void menu_loop(void);
4 void menu_finish(void);
5
6 void menu_notify_mode_change(int w, int h, int bpp);
7
8 enum opts {
9         OPT_SHOWFPS = 1 << 0,
10         OPT_SHOWCPU = 1 << 1,
11         OPT_NO_FRAMELIM = 1 << 2,
12 };
13
14 extern int g_opts;