mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
Merge pull request #1270 from lakkatv/xmb
(XMB) Display subsetting icons
This commit is contained in:
commit
8ce75591ba
@ -837,9 +837,17 @@ static void xmb_draw_items(file_list_t *list, file_list_t *stack,
|
|||||||
case MENU_SETTING_ACTION_RESET:
|
case MENU_SETTING_ACTION_RESET:
|
||||||
icon = xmb->textures[XMB_TEXTURE_RELOAD].id;
|
icon = xmb->textures[XMB_TEXTURE_RELOAD].id;
|
||||||
break;
|
break;
|
||||||
default:
|
case MENU_SETTING_ACTION:
|
||||||
|
icon = xmb->depth == 3 ?
|
||||||
|
xmb->textures[XMB_TEXTURE_SUBSETTING].id :
|
||||||
|
xmb->textures[XMB_TEXTURE_SETTING].id;
|
||||||
|
break;
|
||||||
|
case MENU_SETTING_GROUP:
|
||||||
icon = xmb->textures[XMB_TEXTURE_SETTING].id;
|
icon = xmb->textures[XMB_TEXTURE_SETTING].id;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
icon = xmb->textures[XMB_TEXTURE_SUBSETTING].id;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
xmb_draw_icon(icon,
|
xmb_draw_icon(icon,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user