aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.h
diff options
context:
space:
mode:
authortwinaphex2012-11-28 06:35:30 +0100
committertwinaphex2012-11-28 06:35:30 +0100
commitb194a2ecd43debbb3724e332b660b993725acd52 (patch)
treea41deacfa7a6841e97d67fce60bb7f39b54b12be /frontend/menu.h
parentb6514bd168106e978a0af0f5043d5da6fd35800a (diff)
parent06d2e1a58b6eb7fb449f79f7e807343bd8d39b59 (diff)
downloadpcsx_rearmed-b194a2ecd43debbb3724e332b660b993725acd52.tar.gz
pcsx_rearmed-b194a2ecd43debbb3724e332b660b993725acd52.tar.bz2
pcsx_rearmed-b194a2ecd43debbb3724e332b660b993725acd52.zip
Merge git://github.com/notaz/pcsx_rearmed
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;