mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-20 01:22:16 +00:00
Add help message for directories
This commit is contained in:
parent
1113a6de46
commit
821d51f2f5
@ -214,7 +214,13 @@ int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
snprintf(s, len,
|
||||
"Libretro core. \n"
|
||||
" \n"
|
||||
"Select this file in order to load it.");
|
||||
"Select this file to have RetroArch load this core.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_FILE_BROWSER_DIRECTORY:
|
||||
snprintf(s, len,
|
||||
"Directory. \n"
|
||||
" \n"
|
||||
"Select it to open this directory.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_CACHE_DIRECTORY:
|
||||
snprintf(s, len,
|
||||
@ -1393,7 +1399,8 @@ int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
break;
|
||||
case MENU_ENUM_LABEL_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE:
|
||||
snprintf(s, len,
|
||||
"Filter files being shown by supported extensions.");
|
||||
"Filter files being shown by \n"
|
||||
"supported extensions.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_NETPLAY_NICKNAME:
|
||||
snprintf(s, len,
|
||||
|
@ -3607,6 +3607,15 @@ static int menu_displaylist_parse_generic(
|
||||
}
|
||||
}
|
||||
|
||||
switch (file_type)
|
||||
{
|
||||
case FILE_TYPE_DIRECTORY:
|
||||
enum_idx = MENU_ENUM_LABEL_FILE_BROWSER_DIRECTORY;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
items_found++;
|
||||
menu_entries_append_enum(info->list, path, label,
|
||||
enum_idx,
|
||||
|
Loading…
x
Reference in New Issue
Block a user