diff --git a/menu/menu_hash.c b/menu/menu_hash.c index ca116220cb..18d30eb92d 100644 --- a/menu/menu_hash.c +++ b/menu/menu_hash.c @@ -1572,6 +1572,8 @@ static const char *menu_hash_to_str_english(uint32_t hash) { switch (hash) { + case MENU_LABEL_VALUE_PRIVACY_SETTINGS: + return "Privacy Settings"; case MENU_VALUE_HORIZONTAL_MENU: return "Horizontal Menu"; case MENU_LABEL_NO_SETTINGS_FOUND: diff --git a/menu/menu_hash.h b/menu/menu_hash.h index 1eb5e6ec9c..9b21f8f8fe 100644 --- a/menu/menu_hash.h +++ b/menu/menu_hash.h @@ -691,7 +691,7 @@ extern "C" { #define MENU_LABEL_INPUT_USER_15_BINDS 0xf1085acaU #define MENU_LABEL_INPUT_USER_16_BINDS 0x3e02978bU #define MENU_LABEL_DIRECTORY_SETTINGS 0xb817bd2bU -#define MENU_LABEL_PRIVACY_SETTINGS 0xce106254U +#define MENU_LABEL_VALUE_PRIVACY_SETTINGS 0xce106254U #define MENU_LABEL_SHADER_APPLY_CHANGES 0x4f7306b9U #define MENU_LABEL_VALUE_SHADER_APPLY_CHANGES 0x5ecf945bU #define MENU_LABEL_SAVE_NEW_CONFIG 0xcce9ab72U diff --git a/menu/menu_setting.c b/menu/menu_setting.c index 8df72147e4..1ddc6936cd 100644 --- a/menu/menu_setting.c +++ b/menu/menu_setting.c @@ -6950,14 +6950,15 @@ static bool setting_append_list_privacy_options( rarch_setting_group_info_t subgroup_info = {0}; settings_t *settings = config_get_ptr(); - START_GROUP(group_info, "Privacy Settings", parent_group); + START_GROUP(group_info, + menu_hash_to_str(MENU_LABEL_VALUE_PRIVACY_SETTINGS), parent_group); parent_group = menu_hash_to_str(MENU_LABEL_VALUE_SETTINGS); START_SUB_GROUP(list, list_info, "State", group_info.name, subgroup_info, parent_group); - if (strcmp(settings->record.driver, "null") != 0) + if (strcmp(settings->camera.driver, "null") != 0) { CONFIG_BOOL( settings->camera.allow,