aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/menu.h')
-rw-r--r--frontend/menu.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/frontend/menu.h b/frontend/menu.h
index 17163ec..2062acd 100644
--- a/frontend/menu.h
+++ b/frontend/menu.h
@@ -6,7 +6,7 @@ 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,
@@ -14,6 +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;