mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-09 04:21:33 +00:00
Add help message for libretro cores
This commit is contained in:
parent
6a4665937b
commit
f360084790
@ -204,6 +204,12 @@ int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||
|
||||
switch (msg)
|
||||
{
|
||||
case MENU_ENUM_LABEL_FILE_BROWSER_CORE:
|
||||
snprintf(s, len,
|
||||
"Libretro core. \n"
|
||||
" \n"
|
||||
"Select this file in order to load it.");
|
||||
break;
|
||||
case MENU_ENUM_LABEL_CACHE_DIRECTORY:
|
||||
snprintf(s, len,
|
||||
"Cache Directory. \n"
|
||||
|
@ -3317,6 +3317,7 @@ static int menu_displaylist_parse_cores(
|
||||
bool is_dir;
|
||||
char label[PATH_MAX_LENGTH] = {0};
|
||||
const char *path = NULL;
|
||||
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
|
||||
enum msg_file_type file_type = FILE_TYPE_NONE;
|
||||
|
||||
switch (str_list->elems[i].attr.i)
|
||||
@ -3364,11 +3365,21 @@ static int menu_displaylist_parse_cores(
|
||||
if (file_type == FILE_TYPE_CARCHIVE)
|
||||
continue;
|
||||
|
||||
file_type = is_dir ? FILE_TYPE_DIRECTORY : FILE_TYPE_CORE;
|
||||
if (is_dir)
|
||||
{
|
||||
file_type = FILE_TYPE_DIRECTORY;
|
||||
enum_idx = MENU_ENUM_LABEL_FILE_BROWSER_DIRECTORY;
|
||||
}
|
||||
else
|
||||
{
|
||||
file_type = FILE_TYPE_CORE;
|
||||
enum_idx = MENU_ENUM_LABEL_FILE_BROWSER_CORE;
|
||||
}
|
||||
|
||||
items_found++;
|
||||
|
||||
menu_entries_append_enum(info->list, path, label,
|
||||
MSG_UNKNOWN,
|
||||
enum_idx,
|
||||
file_type, 0, 0);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user