mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
Rename Path Settings to Directory Settings
This commit is contained in:
parent
e3ac6dca16
commit
e215b2d6ec
@ -147,7 +147,7 @@ int menu_entries_common_is_settings_entry(const char *label)
|
|||||||
!strcmp(label, "Network Settings") ||
|
!strcmp(label, "Network Settings") ||
|
||||||
!strcmp(label, "Archive Settings") ||
|
!strcmp(label, "Archive Settings") ||
|
||||||
!strcmp(label, "User Settings") ||
|
!strcmp(label, "User Settings") ||
|
||||||
!strcmp(label, "Path Settings") ||
|
!strcmp(label, "Directory Settings") ||
|
||||||
!strcmp(label, "Privacy Settings"));
|
!strcmp(label, "Privacy Settings"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
10
settings.c
10
settings.c
@ -6034,7 +6034,7 @@ static bool setting_append_list_user_options(
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool setting_append_list_path_options(
|
static bool setting_append_list_directory_options(
|
||||||
rarch_setting_t **list,
|
rarch_setting_t **list,
|
||||||
rarch_setting_info_t *list_info)
|
rarch_setting_info_t *list_info)
|
||||||
{
|
{
|
||||||
@ -6043,9 +6043,9 @@ static bool setting_append_list_path_options(
|
|||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
global_t *global = global_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(
|
CONFIG_DIR(
|
||||||
settings->core_assets_directory,
|
settings->core_assets_directory,
|
||||||
@ -6601,9 +6601,9 @@ rarch_setting_t *setting_new(unsigned mask)
|
|||||||
goto error;
|
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;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ enum setting_list_flags
|
|||||||
SL_FLAG_CORE_UPDATER_OPTIONS = (1 << 13),
|
SL_FLAG_CORE_UPDATER_OPTIONS = (1 << 13),
|
||||||
SL_FLAG_NETPLAY_OPTIONS = (1 << 14),
|
SL_FLAG_NETPLAY_OPTIONS = (1 << 14),
|
||||||
SL_FLAG_USER_OPTIONS = (1 << 15),
|
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_PRIVACY_OPTIONS = (1 << 17),
|
||||||
SL_FLAG_PLAYLIST_OPTIONS = (1 << 18),
|
SL_FLAG_PLAYLIST_OPTIONS = (1 << 18),
|
||||||
SL_FLAG_ARCHIVE_OPTIONS = (1 << 19),
|
SL_FLAG_ARCHIVE_OPTIONS = (1 << 19),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user