From a8485d451a4dc7fb7aba23508a9afea3bd3ceca8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 24 Apr 2016 22:16:54 +0200 Subject: [PATCH] (config.def.h) Set ribbon enable mode to 1 by default for GLES2 --- config.def.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.def.h b/config.def.h index f71e7f8f51..2138b092ec 100644 --- a/config.def.h +++ b/config.def.h @@ -513,7 +513,12 @@ static unsigned xmb_alpha_factor = 75; static unsigned xmb_theme = 0; static unsigned xmb_gradient = 0; static bool xmb_shadows_enable = false; + +#if defined(HAVE_OPENGLES2) +static unsigned xmb_ribbon_enable = 1; +#else static unsigned xmb_ribbon_enable = 0; +#endif static bool show_advanced_settings = true; static const uint32_t menu_entry_normal_color = 0xffffffff;