X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.h;h=2062acdf6e220b625d89ebd70ad7d119c9499b52;hp=1635146ffb9a6169f394601ece350bfb446a4f5b;hb=9e5ac38fda66536f2a9e6dd2a747ae37538c3638;hpb=4c08b9e7dd350a48fc3e0515913d6ccc8b15e5ae diff --git a/frontend/menu.h b/frontend/menu.h index 1635146f..2062acdf 100644 --- a/frontend/menu.h +++ b/frontend/menu.h @@ -4,8 +4,9 @@ void menu_loop(void); void menu_finish(void); void menu_notify_mode_change(int w, int h, int bpp); +void menu_set_filter_list(void *filters); -enum opts { +enum g_opts_opts { OPT_SHOWFPS = 1 << 0, OPT_SHOWCPU = 1 << 1, OPT_NO_FRAMELIM = 1 << 2, @@ -13,4 +14,17 @@ enum opts { OPT_TSGUN_NOTRIGGER = 1 << 4, }; -extern int g_opts; +enum g_scaler_opts { + SCALE_1_1, + SCALE_4_3, + SCALE_4_3v2, + SCALE_FULLSCREEN, + SCALE_CUSTOM, +}; + +extern int g_opts, g_scaler; +extern int soft_scaling, analog_deadzone; +extern int filter; + +extern int g_menuscreen_w; +extern int g_menuscreen_h;