Create MENU_ENUM_LABEL_PLAYLIST_ENTRY
This commit is contained in:
parent
58c6590dca
commit
170f8da759
|
@ -1188,6 +1188,8 @@ static const char *menu_hash_to_str_us_label_enum(enum msg_hash_enums msg)
|
||||||
return "core_info_entry";
|
return "core_info_entry";
|
||||||
case MENU_ENUM_LABEL_NETWORK_INFO_ENTRY:
|
case MENU_ENUM_LABEL_NETWORK_INFO_ENTRY:
|
||||||
return "network_info_entry";
|
return "network_info_entry";
|
||||||
|
case MENU_ENUM_LABEL_PLAYLIST_ENTRY:
|
||||||
|
return "playlist_entry";
|
||||||
case MENU_ENUM_LABEL_SYSTEM_INFO_ENTRY:
|
case MENU_ENUM_LABEL_SYSTEM_INFO_ENTRY:
|
||||||
return "system_info_entry";
|
return "system_info_entry";
|
||||||
case MENU_ENUM_LABEL_DEBUG_INFO_ENTRY:
|
case MENU_ENUM_LABEL_DEBUG_INFO_ENTRY:
|
||||||
|
|
|
@ -1587,13 +1587,13 @@ static int menu_displaylist_parse_playlist(menu_displaylist_info_t *info,
|
||||||
|
|
||||||
if (!path)
|
if (!path)
|
||||||
menu_entries_add_enum(info->list, fill_buf, path_playlist,
|
menu_entries_add_enum(info->list, fill_buf, path_playlist,
|
||||||
MSG_UNKNOWN, FILE_TYPE_PLAYLIST_ENTRY, 0, i);
|
MENU_ENUM_LABEL_PLAYLIST_ENTRY, FILE_TYPE_PLAYLIST_ENTRY, 0, i);
|
||||||
else if (is_history)
|
else if (is_history)
|
||||||
menu_entries_add_enum(info->list, fill_buf,
|
menu_entries_add_enum(info->list, fill_buf,
|
||||||
path, MSG_UNKNOWN, FILE_TYPE_RPL_ENTRY, 0, i);
|
path, MENU_ENUM_LABEL_PLAYLIST_ENTRY, FILE_TYPE_RPL_ENTRY, 0, i);
|
||||||
else
|
else
|
||||||
menu_entries_add_enum(info->list, label,
|
menu_entries_add_enum(info->list, label,
|
||||||
path, MSG_UNKNOWN, FILE_TYPE_RPL_ENTRY, 0, i);
|
path, MENU_ENUM_LABEL_PLAYLIST_ENTRY, FILE_TYPE_RPL_ENTRY, 0, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -286,6 +286,7 @@ enum msg_hash_enums
|
||||||
MENU_ENUM_LABEL_NETWORK_INFO_ENTRY,
|
MENU_ENUM_LABEL_NETWORK_INFO_ENTRY,
|
||||||
MENU_ENUM_LABEL_SYSTEM_INFO_ENTRY,
|
MENU_ENUM_LABEL_SYSTEM_INFO_ENTRY,
|
||||||
MENU_ENUM_LABEL_CORE_INFO_ENTRY,
|
MENU_ENUM_LABEL_CORE_INFO_ENTRY,
|
||||||
|
MENU_ENUM_LABEL_PLAYLIST_ENTRY,
|
||||||
MENU_ENUM_LABEL_START_NET_RETROPAD,
|
MENU_ENUM_LABEL_START_NET_RETROPAD,
|
||||||
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
|
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue