aboutsummaryrefslogtreecommitdiff
path: root/frontend/menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/menu.c')
-rw-r--r--frontend/menu.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/frontend/menu.c b/frontend/menu.c
index fc95294..b73e257 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -132,6 +132,7 @@ static int bios_sel, gpu_plugsel, spu_plugsel;
#define MENU_SHOW_FULLSCREEN 1
#define MENU_SHOW_VOLUME 0
#define MENU_SHOW_DISPLAY 1
+#define MENU_SHOW_PEOPS 1
#endif
static int min(int x, int y) { return x < y ? x : y; }
@@ -2560,10 +2561,8 @@ void menu_init(void)
me_enable(e_menu_keyconfig, MA_CTRL_DEADZONE, MENU_SHOW_DEADZONE);
me_enable(e_menu_options, MA_OPT_DISP_OPTS, MENU_SHOW_DISPLAY);
-#ifdef TRIMUI
- me_enable(e_menu_plugin_options, MA_PLUG_PEOPS, FALSE);
- me_enable(e_menu_plugin_options, MA_PLUG_PEOPSGL, FALSE);
-#endif
+ me_enable(e_menu_plugin_options, MA_PLUG_PEOPS, MENU_SHOW_PEOPS);
+ me_enable(e_menu_plugin_options, MA_PLUG_PEOPSGL, MENU_SHOW_PEOPS);
}
void menu_notify_mode_change(int w, int h, int bpp)