Add another title

This commit is contained in:
twinaphex 2015-10-28 05:00:48 +01:00
parent d59f3eff07
commit c5c816d708

View File

@ -296,6 +296,13 @@ static int action_get_core_information_list(const char *path, const char *label,
return 0;
}
static int action_get_core_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
sanitize_to_string(s, menu_hash_to_str(MENU_LABEL_VALUE_CORE_LIST), len);
return 0;
}
static int action_get_cursor_manager_list(const char *path, const char *label,
unsigned menu_type, char *s, size_t len)
{
@ -657,6 +664,8 @@ static int menu_cbs_init_bind_title_compare_label(menu_file_list_cbs_t *cbs,
BIND_ACTION_GET_TITLE(cbs, action_get_core_information_list);
break;
case MENU_LABEL_CORE_LIST:
BIND_ACTION_GET_TITLE(cbs, action_get_core_list);
break;
case MENU_LABEL_MANAGEMENT:
case MENU_LABEL_ONLINE_UPDATER:
case MENU_LABEL_FRONTEND_COUNTERS: