mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
glui: fix add to playlist icon in quick menu (#17596)
This commit is contained in:
parent
e4fe551924
commit
0ed66a79f1
1 changed files with 4 additions and 1 deletions
|
@ -11599,7 +11599,10 @@ static void materialui_list_insert(void *userdata,
|
|||
node->icon_texture_index = MUI_TEXTURE_ADD_TO_FAVORITES;
|
||||
node->icon_type = MUI_ICON_TYPE_INTERNAL;
|
||||
}
|
||||
else if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST)))
|
||||
else if (
|
||||
string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST))
|
||||
|| string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_ADD_TO_PLAYLIST_QUICKMENU))
|
||||
)
|
||||
{
|
||||
node->icon_texture_index = MUI_TEXTURE_PLAYLIST;
|
||||
node->icon_type = MUI_ICON_TYPE_INTERNAL;
|
||||
|
|
Loading…
Add table
Reference in a new issue