From 78339ae67c174ed4ce29a730990ac2d0148c532b Mon Sep 17 00:00:00 2001 From: Conn Date: Mon, 19 Jun 2017 16:34:57 +0100 Subject: [PATCH] xmb: fix incorrect wallpaper alpha blending --- menu/drivers/xmb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index f326c5d001..074f7e80d8 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -2579,7 +2579,7 @@ static void xmb_draw_bg( draw.texture = texture; menu_display_set_alpha(draw.color, coord_white[3]); - if (!running && draw.texture) + if (draw.texture) draw.color = &coord_white[0]; if (running || video_info->xmb_color_theme == XMB_THEME_WALLPAPER)