mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 17:10:12 +00:00
Create 'Configuration Settings'
This commit is contained in:
parent
73099cddc2
commit
58d2eaf49a
@ -3647,7 +3647,7 @@ static bool setting_append_list_core_options(
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool setting_append_list_general_options(
|
||||
static bool setting_append_list_configuration_options(
|
||||
rarch_setting_t **list,
|
||||
rarch_setting_info_t *list_info)
|
||||
{
|
||||
@ -3656,7 +3656,7 @@ static bool setting_append_list_general_options(
|
||||
settings_t *settings = config_get_ptr();
|
||||
global_t *global = global_get_ptr();
|
||||
|
||||
START_GROUP(group_info, "General Settings");
|
||||
START_GROUP(group_info, "Configuration Settings");
|
||||
|
||||
START_SUB_GROUP(list, list_info, "State", group_info.name, subgroup_info);
|
||||
|
||||
@ -6589,9 +6589,9 @@ rarch_setting_t *setting_new(unsigned mask)
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (mask & SL_FLAG_GENERAL_OPTIONS)
|
||||
if (mask & SL_FLAG_CONFIGURATION_OPTIONS)
|
||||
{
|
||||
if (!setting_append_list_general_options(&list, list_info))
|
||||
if (!setting_append_list_configuration_options(&list, list_info))
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
@ -67,7 +67,7 @@ enum setting_list_flags
|
||||
SL_FLAG_MAIN_MENU = (1 << 0),
|
||||
SL_FLAG_DRIVER_OPTIONS = (1 << 1),
|
||||
SL_FLAG_CORE_OPTIONS = (1 << 2),
|
||||
SL_FLAG_GENERAL_OPTIONS = (1 << 3),
|
||||
SL_FLAG_CONFIGURATION_OPTIONS = (1 << 3),
|
||||
SL_FLAG_REWIND_OPTIONS = (1 << 4),
|
||||
SL_FLAG_VIDEO_OPTIONS = (1 << 5),
|
||||
SL_FLAG_SHADER_OPTIONS = (1 << 6),
|
||||
|
Loading…
Reference in New Issue
Block a user