mirror of
https://github.com/libretro/RetroArch
synced 2025-03-17 10:21:26 +00:00
Fix action_get_title_input_binds_list
This commit is contained in:
parent
1bdf3d395d
commit
d9651023c4
@ -718,7 +718,8 @@ static int action_get_title_input_settings(const char *path, const char *label,
|
||||
static int action_get_title_input_binds_list(const char *path, const char *label,
|
||||
unsigned menu_type, char *s, size_t len)
|
||||
{
|
||||
snprintf(s, len, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS), path[0]);
|
||||
unsigned val = (((unsigned)path[0]) - 49) + 1;
|
||||
snprintf(s, len, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS), val);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user