Create 'Configuration Settings'

This commit is contained in:
twinaphex 2015-06-02 15:09:52 +02:00
parent 73099cddc2
commit 58d2eaf49a
2 changed files with 5 additions and 5 deletions

View File

@ -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;
}

View File

@ -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),