(XMB) Use RetroArch or Lakka logo in place of the home icon

This commit is contained in:
Jean-André Santoni 2015-10-24 02:52:42 +07:00
parent 2b376ce3d5
commit 4b82132e9d
1 changed files with 5 additions and 1 deletions

View File

@ -2133,7 +2133,11 @@ static void xmb_context_reset_textures(xmb_handle_t *xmb, const char *iconpath)
switch(i) switch(i)
{ {
case XMB_TEXTURE_MAIN_MENU: 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; break;
case XMB_TEXTURE_SETTINGS: case XMB_TEXTURE_SETTINGS:
fill_pathname_join(path, iconpath, "settings.png", sizeof(path)); fill_pathname_join(path, iconpath, "settings.png", sizeof(path));