Fix string_options_entries size for drivers settings list (#15710)
This commit is contained in:
parent
db2dc7a7de
commit
c3a18e0469
|
@ -10308,7 +10308,7 @@ static bool setting_append_list(
|
||||||
case SETTINGS_LIST_DRIVERS:
|
case SETTINGS_LIST_DRIVERS:
|
||||||
{
|
{
|
||||||
unsigned i, j = 0;
|
unsigned i, j = 0;
|
||||||
struct string_options_entry string_options_entries[13] = {{0}};
|
struct string_options_entry string_options_entries[14] = {{0}};
|
||||||
|
|
||||||
START_GROUP(list, list_info, &group_info, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS), parent_group);
|
START_GROUP(list, list_info, &group_info, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS), parent_group);
|
||||||
MENU_SETTINGS_LIST_CURRENT_ADD_ENUM_IDX_PTR(list, list_info, MENU_ENUM_LABEL_DRIVER_SETTINGS);
|
MENU_SETTINGS_LIST_CURRENT_ADD_ENUM_IDX_PTR(list, list_info, MENU_ENUM_LABEL_DRIVER_SETTINGS);
|
||||||
|
|
Loading…
Reference in New Issue