mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Enlarged INT/UINT selection limit from 999 to 9999
This commit is contained in:
parent
de36ff20fb
commit
6e072e245e
@ -11111,7 +11111,7 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||
unsigned setting_type = MENU_SETTING_DROPDOWN_SETTING_INT_ITEM;
|
||||
float step = setting->step;
|
||||
double min = setting->enforce_minrange ? setting->min : 0.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 999.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 99999.00;
|
||||
bool checked_found = false;
|
||||
unsigned checked = 0;
|
||||
unsigned entry_index = 0;
|
||||
@ -11187,7 +11187,7 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||
unsigned setting_type = MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM;
|
||||
float step = setting->step;
|
||||
double min = setting->enforce_minrange ? setting->min : 0.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 999.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 9999.00;
|
||||
bool checked_found = false;
|
||||
unsigned checked = 0;
|
||||
unsigned entry_index = 0;
|
||||
@ -11261,7 +11261,7 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||
unsigned setting_type = MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM;
|
||||
float step = setting->step;
|
||||
double min = setting->enforce_minrange ? setting->min : 0.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 999.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 9999.00;
|
||||
bool checked_found = false;
|
||||
unsigned checked = 0;
|
||||
unsigned entry_index = 0;
|
||||
@ -11527,7 +11527,7 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||
unsigned setting_type = MENU_SETTING_DROPDOWN_SETTING_INT_ITEM_SPECIAL;
|
||||
float step = setting->step;
|
||||
double min = setting->enforce_minrange ? setting->min : 0.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 999.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 9999.00;
|
||||
bool checked_found = false;
|
||||
unsigned checked = 0;
|
||||
unsigned entry_index = 0;
|
||||
@ -11603,7 +11603,7 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||
unsigned setting_type = MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM_SPECIAL;
|
||||
float step = setting->step;
|
||||
double min = setting->enforce_minrange ? setting->min : 0.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 999.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 9999.00;
|
||||
bool checked_found = false;
|
||||
unsigned checked = 0;
|
||||
unsigned entry_index = 0;
|
||||
@ -11677,7 +11677,7 @@ bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type,
|
||||
unsigned setting_type = MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM_SPECIAL;
|
||||
float step = setting->step;
|
||||
double min = setting->enforce_minrange ? setting->min : 0.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 999.00;
|
||||
double max = setting->enforce_maxrange ? setting->max : 9999.00;
|
||||
bool checked_found = false;
|
||||
unsigned checked = 0;
|
||||
unsigned entry_index = 0;
|
||||
|
@ -15728,7 +15728,7 @@ static bool setting_append_list(
|
||||
general_read_handler);
|
||||
(*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.0f, 999.0f, 1.0f, true, true);
|
||||
menu_settings_list_current_add_range(list, list_info, -1.0f, 9999.0f, 1.0f, true, true);
|
||||
|
||||
CONFIG_BOOL(
|
||||
list, list_info,
|
||||
|
Loading…
x
Reference in New Issue
Block a user