mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Move Device Types to top
This commit is contained in:
parent
ac3ca76d83
commit
177c4a0fc4
@ -1944,6 +1944,16 @@ static int menu_displaylist_parse_options_remappings(menu_displaylist_info_t *in
|
|||||||
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
||||||
menu_handle_t *menu = menu_driver_get_ptr();
|
menu_handle_t *menu = menu_driver_get_ptr();
|
||||||
|
|
||||||
|
for (p = 0; p < settings->input.max_users; p++)
|
||||||
|
{
|
||||||
|
char key_type[PATH_MAX_LENGTH];
|
||||||
|
snprintf(key_type, sizeof(key_type),
|
||||||
|
"input_libretro_device_p%u", p + 1);
|
||||||
|
|
||||||
|
menu_displaylist_parse_settings(menu, info,
|
||||||
|
key_type, PARSE_ONLY_UINT);
|
||||||
|
}
|
||||||
|
|
||||||
menu_entries_push(info->list,
|
menu_entries_push(info->list,
|
||||||
menu_hash_to_str(MENU_LABEL_VALUE_REMAP_FILE_LOAD),
|
menu_hash_to_str(MENU_LABEL_VALUE_REMAP_FILE_LOAD),
|
||||||
menu_hash_to_str(MENU_LABEL_REMAP_FILE_LOAD),
|
menu_hash_to_str(MENU_LABEL_REMAP_FILE_LOAD),
|
||||||
@ -1961,16 +1971,6 @@ static int menu_displaylist_parse_options_remappings(menu_displaylist_info_t *in
|
|||||||
menu_hash_to_str(MENU_LABEL_REMAP_FILE_SAVE_GAME),
|
menu_hash_to_str(MENU_LABEL_REMAP_FILE_SAVE_GAME),
|
||||||
MENU_SETTING_ACTION, 0, 0);
|
MENU_SETTING_ACTION, 0, 0);
|
||||||
|
|
||||||
for (p = 0; p < settings->input.max_users; p++)
|
|
||||||
{
|
|
||||||
char key_type[PATH_MAX_LENGTH];
|
|
||||||
snprintf(key_type, sizeof(key_type),
|
|
||||||
"input_libretro_device_p%u", p + 1);
|
|
||||||
|
|
||||||
menu_displaylist_parse_settings(menu, info,
|
|
||||||
key_type, PARSE_ONLY_UINT);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (p = 0; p < settings->input.max_users; p++)
|
for (p = 0; p < settings->input.max_users; p++)
|
||||||
{
|
{
|
||||||
for (retro_id = 0; retro_id < RARCH_FIRST_CUSTOM_BIND + 4; retro_id++)
|
for (retro_id = 0; retro_id < RARCH_FIRST_CUSTOM_BIND + 4; retro_id++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user