From c72a68faf8f8da45a97d536c89a9c02c4e6402a5 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 1 Mar 2018 17:34:08 +0100 Subject: [PATCH] Disable XMB shadow icons by default for PowerPC and ARM for performance reasons --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index dec7ad2eb3..df031402a9 100644 --- a/config.def.h +++ b/config.def.h @@ -302,7 +302,7 @@ static unsigned menu_font_color_green = 255; static unsigned menu_font_color_blue = 255; static unsigned xmb_icon_theme = XMB_ICON_THEME_MONOCHROME; static unsigned xmb_theme = XMB_THEME_ELECTRIC_BLUE; -#ifdef HAVE_LAKKA +#if defined(HAVE_LAKKA) || defined(__arm__) || defined(__PPC64__) || defined(__ppc64__) || defined(__powerpc64__) || defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__) static bool xmb_shadows_enable = false; #else static bool xmb_shadows_enable = true;