mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Don't rely on 'value' setting
This commit is contained in:
parent
f7f56edffd
commit
b606d47622
@ -569,6 +569,7 @@ static int menu_cbs_init_bind_left_compare_type(menu_file_list_cbs_t *cbs,
|
|||||||
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)) ||
|
if ( string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HISTORY_TAB)) ||
|
||||||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
|
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_PLAYLISTS_TAB)) ||
|
||||||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)) ||
|
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)) ||
|
||||||
|
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)) ||
|
||||||
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB))
|
string_is_equal(menu_label, menu_hash_to_str_enum(MENU_ENUM_LABEL_SETTINGS_TAB))
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
@ -283,6 +283,8 @@ static int action_get_title_group_settings(const char *path, const char *label,
|
|||||||
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB), len);
|
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB), len);
|
||||||
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)))
|
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_ADD_TAB)))
|
||||||
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ADD_TAB), len);
|
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_ADD_TAB), len);
|
||||||
|
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)))
|
||||||
|
strlcpy(s, menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU), len);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char elem0[PATH_MAX_LENGTH] = {0};
|
char elem0[PATH_MAX_LENGTH] = {0};
|
||||||
|
@ -3002,7 +3002,7 @@ static void xmb_list_cache(void *data, enum menu_list_type type, unsigned action
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
menu_stack->list[stack_size - 1].label =
|
menu_stack->list[stack_size - 1].label =
|
||||||
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU));
|
strdup(menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU));
|
||||||
menu_stack->list[stack_size - 1].type =
|
menu_stack->list[stack_size - 1].type =
|
||||||
MENU_SETTING_HORIZONTAL_MENU;
|
MENU_SETTING_HORIZONTAL_MENU;
|
||||||
break;
|
break;
|
||||||
|
@ -34,6 +34,8 @@ static const char *menu_hash_to_str_us_label_enum(enum menu_hash_enums msg)
|
|||||||
return "add_tab";
|
return "add_tab";
|
||||||
case MENU_ENUM_LABEL_PLAYLISTS_TAB:
|
case MENU_ENUM_LABEL_PLAYLISTS_TAB:
|
||||||
return "playlists_tab";
|
return "playlists_tab";
|
||||||
|
case MENU_ENUM_LABEL_HORIZONTAL_MENU:
|
||||||
|
return "horizontal_menu";
|
||||||
case MENU_ENUM_LABEL_PARENT_DIRECTORY:
|
case MENU_ENUM_LABEL_PARENT_DIRECTORY:
|
||||||
return "parent_directory";
|
return "parent_directory";
|
||||||
case MENU_ENUM_LABEL_INPUT_PLAYER_ANALOG_DPAD_MODE:
|
case MENU_ENUM_LABEL_INPUT_PLAYER_ANALOG_DPAD_MODE:
|
||||||
|
@ -3555,6 +3555,12 @@ static bool menu_displaylist_push_internal(
|
|||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
else if (string_is_equal(label, menu_hash_to_str_enum(MENU_ENUM_LABEL_HORIZONTAL_MENU)))
|
||||||
|
{
|
||||||
|
if (!menu_displaylist_ctl(DISPLAYLIST_HORIZONTAL, info))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
switch (menu_hash_calculate(label))
|
switch (menu_hash_calculate(label))
|
||||||
{
|
{
|
||||||
|
@ -723,6 +723,8 @@ enum menu_hash_enums
|
|||||||
MENU_ENUM_LABEL_VALUE_SHA1,
|
MENU_ENUM_LABEL_VALUE_SHA1,
|
||||||
MENU_ENUM_LABEL_VALUE_CRC,
|
MENU_ENUM_LABEL_VALUE_CRC,
|
||||||
MENU_ENUM_LABEL_VALUE_MORE,
|
MENU_ENUM_LABEL_VALUE_MORE,
|
||||||
|
|
||||||
|
MENU_ENUM_LABEL_HORIZONTAL_MENU,
|
||||||
MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU,
|
MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU,
|
||||||
|
|
||||||
MENU_ENUM_LABEL_SETTINGS_TAB,
|
MENU_ENUM_LABEL_SETTINGS_TAB,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user