From 4b82132e9d841a5404a338d0d5fd4939f27e6a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sat, 24 Oct 2015 02:52:42 +0700 Subject: [PATCH] (XMB) Use RetroArch or Lakka logo in place of the home icon --- menu/drivers/xmb.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index 080cfcf6ea..074019b28b 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -2133,7 +2133,11 @@ static void xmb_context_reset_textures(xmb_handle_t *xmb, const char *iconpath) switch(i) { case XMB_TEXTURE_MAIN_MENU: - fill_pathname_join(path, iconpath, "main-menu.png", sizeof(path)); +#if defined(HAVE_LAKKA) + fill_pathname_join(path, iconpath, "lakka.png", sizeof(path)); +#else + fill_pathname_join(path, iconpath, "retroarch.png", sizeof(path)); +#endif break; case XMB_TEXTURE_SETTINGS: fill_pathname_join(path, iconpath, "settings.png", sizeof(path));