mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Menu setting fixes (#13439)
Fixes for some netplay settings that don't work well in the menu.
This commit is contained in:
parent
fb6dfd345f
commit
c29fd8e53a
1 changed files with 3 additions and 3 deletions
|
@ -19308,6 +19308,7 @@ static bool setting_append_list(
|
|||
general_read_handler);
|
||||
(*list)[list_info->index - 1].ui_type = ST_UI_TYPE_UINT_SPINBOX;
|
||||
(*list)[list_info->index - 1].action_ok = &setting_action_ok_uint;
|
||||
(*list)[list_info->index - 1].offset_by = 1;
|
||||
menu_settings_list_current_add_range(list, list_info, 1, 31, 1, true, true);
|
||||
|
||||
CONFIG_UINT(
|
||||
|
@ -19321,9 +19322,8 @@ static bool setting_append_list(
|
|||
parent_group,
|
||||
general_write_handler,
|
||||
general_read_handler);
|
||||
(*list)[list_info->index - 1].ui_type = ST_UI_TYPE_UINT_SPINBOX;
|
||||
(*list)[list_info->index - 1].action_ok = &setting_action_ok_uint;
|
||||
menu_settings_list_current_add_range(list, list_info, 0, 500, 25, true, true);
|
||||
(*list)[list_info->index - 1].ui_type = ST_UI_TYPE_UINT_SPINBOX;
|
||||
menu_settings_list_current_add_range(list, list_info, 0, 500, 10, true, true);
|
||||
|
||||
CONFIG_STRING(
|
||||
list, list_info,
|
||||
|
|
Loading…
Add table
Reference in a new issue