spu: change volume control, default it to 3/4 instead of 1/2
[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,
bd6267e6 13};
14
15extern int g_opts;