X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.h;h=3326b697840575793e9bc671620762833bd2c2cb;hp=67beef2b840ef5f92f9d83d8be060651ccc5f1c8;hb=76d1d09c1224af8d663ce63dc5b32425bd62cb29;hpb=3c70c47bb2fa50066c4c3b23813253e03b8751fe diff --git a/frontend/menu.h b/frontend/menu.h index 67beef2b..3326b697 100644 --- a/frontend/menu.h +++ b/frontend/menu.h @@ -1,5 +1,16 @@ void menu_init(void); void menu_prepare_emu(void); void menu_loop(void); +void menu_finish(void); -void menu_notify_mode_change(int w, int h); +void menu_notify_mode_change(int w, int h, int bpp); + +enum opts { + OPT_SHOWFPS = 1 << 0, + OPT_SHOWCPU = 1 << 1, + OPT_NO_FRAMELIM = 1 << 2, + OPT_SHOWSPU = 1 << 3, + OPT_TSGUN_NOTRIGGER = 1 << 4, +}; + +extern int g_opts, analog_deadzone;