aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/menu.h')
-rw-r--r--frontend/menu.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/frontend/menu.h b/frontend/menu.h
index 2062acd..c6c1ab1 100644
--- a/frontend/menu.h
+++ b/frontend/menu.h
@@ -4,7 +4,6 @@ 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 g_opts_opts {
OPT_SHOWFPS = 1 << 0,
@@ -22,9 +21,16 @@ enum g_scaler_opts {
SCALE_CUSTOM,
};
-extern int g_opts, g_scaler;
+enum g_soft_filter_opts {
+ SOFT_FILTER_NONE,
+ SOFT_FILTER_SCALE2X,
+ SOFT_FILTER_EAGLE2X,
+};
+
+extern int g_opts, g_scaler, g_gamma;
extern int soft_scaling, analog_deadzone;
-extern int filter;
+extern int g_use_overlay, g_fullscreen;
+extern int filter, soft_filter;
extern int g_menuscreen_w;
extern int g_menuscreen_h;