Rename Path Settings to Directory Settings

This commit is contained in:
twinaphex 2015-05-17 17:09:07 +02:00
parent e3ac6dca16
commit e215b2d6ec
3 changed files with 7 additions and 7 deletions

View File

@ -147,7 +147,7 @@ int menu_entries_common_is_settings_entry(const char *label)
!strcmp(label, "Network Settings") ||
!strcmp(label, "Archive Settings") ||
!strcmp(label, "User Settings") ||
!strcmp(label, "Path Settings") ||
!strcmp(label, "Directory Settings") ||
!strcmp(label, "Privacy Settings"));
}

View File

@ -6034,7 +6034,7 @@ static bool setting_append_list_user_options(
return true;
}
static bool setting_append_list_path_options(
static bool setting_append_list_directory_options(
rarch_setting_t **list,
rarch_setting_info_t *list_info)
{
@ -6043,9 +6043,9 @@ static bool setting_append_list_path_options(
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
START_GROUP(group_info, "Path Settings");
START_GROUP(group_info, "Directory Settings");
START_SUB_GROUP(list, list_info, "Paths", group_info.name, subgroup_info);
START_SUB_GROUP(list, list_info, "State", group_info.name, subgroup_info);
CONFIG_DIR(
settings->core_assets_directory,
@ -6601,9 +6601,9 @@ rarch_setting_t *setting_new(unsigned mask)
goto error;
}
if (mask & SL_FLAG_PATH_OPTIONS)
if (mask & SL_FLAG_DIRECTORY_OPTIONS)
{
if (!setting_append_list_path_options(&list, list_info))
if (!setting_append_list_directory_options(&list, list_info))
goto error;
}

View File

@ -80,7 +80,7 @@ enum setting_list_flags
SL_FLAG_CORE_UPDATER_OPTIONS = (1 << 13),
SL_FLAG_NETPLAY_OPTIONS = (1 << 14),
SL_FLAG_USER_OPTIONS = (1 << 15),
SL_FLAG_PATH_OPTIONS = (1 << 16),
SL_FLAG_DIRECTORY_OPTIONS = (1 << 16),
SL_FLAG_PRIVACY_OPTIONS = (1 << 17),
SL_FLAG_PLAYLIST_OPTIONS = (1 << 18),
SL_FLAG_ARCHIVE_OPTIONS = (1 << 19),