mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Fix 'Playlists' menu title
This commit is contained in:
parent
12bf049fbb
commit
1c4769d96f
1 changed files with 5 additions and 4 deletions
|
@ -875,7 +875,6 @@ static int menu_cbs_init_bind_title_compare_label(menu_file_list_cbs_t *cbs,
|
|||
case MENU_ENUM_LABEL_ACHIEVEMENT_LIST_HARDCORE:
|
||||
case MENU_ENUM_LABEL_VIDEO_SHADER_PARAMETERS:
|
||||
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET_PARAMETERS:
|
||||
case MENU_ENUM_LABEL_PLAYLISTS_TAB:
|
||||
BIND_ACTION_GET_TITLE(cbs, action_get_title_action_generic);
|
||||
break;
|
||||
case MENU_ENUM_LABEL_DISK_IMAGE_APPEND:
|
||||
|
@ -1190,9 +1189,6 @@ static int menu_cbs_init_bind_title_compare_label(menu_file_list_cbs_t *cbs,
|
|||
case MENU_LABEL_DEFERRED_PLAYLIST_MANAGER_LIST:
|
||||
BIND_ACTION_GET_TITLE(cbs, action_get_playlist_manager_list);
|
||||
break;
|
||||
case MENU_LABEL_PLAYLISTS_TAB:
|
||||
BIND_ACTION_GET_TITLE(cbs, action_get_title_collection);
|
||||
break;
|
||||
case MENU_LABEL_ACHIEVEMENT_LIST:
|
||||
BIND_ACTION_GET_TITLE(cbs, action_get_title_cheevos_list);
|
||||
break;
|
||||
|
@ -1364,6 +1360,11 @@ int menu_cbs_init_bind_title(menu_file_list_cbs_t *cbs,
|
|||
BIND_ACTION_GET_TITLE(cbs, action_get_title_list_rdb_entry_database_info);
|
||||
return 0;
|
||||
}
|
||||
if (string_is_equal(label, msg_hash_to_str(MENU_ENUM_LABEL_PLAYLISTS_TAB)))
|
||||
{
|
||||
BIND_ACTION_GET_TITLE(cbs, action_get_title_collection);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue