diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index a97ca281c2..f0499aa511 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));