diff --git a/intl/msg_hash_us.h b/intl/msg_hash_us.h index 5d63bf4d6b..89be55b5e2 100644 --- a/intl/msg_hash_us.h +++ b/intl/msg_hash_us.h @@ -1614,6 +1614,8 @@ MSG_HASH(MENU_ENUM_SUBLABEL_DRIVER_SETTINGS, "Change drivers for the system.") MSG_HASH(MENU_ENUM_SUBLABEL_RETRO_ACHIEVEMENTS_SETTINGS, "Change settings for the achievements.") +MSG_HASH(MENU_ENUM_SUBLABEL_CONFIGURATION_SETTINGS, + "Change settings for configurations, content overrides, core overrides, remaps and more.") MSG_HASH(MENU_ENUM_SUBLABEL_CORE_SETTINGS, "Change settings for the core.") MSG_HASH(MENU_ENUM_SUBLABEL_RECORDING_SETTINGS, diff --git a/menu/cbs/menu_cbs_sublabel.c b/menu/cbs/menu_cbs_sublabel.c index cee99f448a..8418c9565d 100644 --- a/menu/cbs/menu_cbs_sublabel.c +++ b/menu/cbs/menu_cbs_sublabel.c @@ -413,6 +413,17 @@ static int action_bind_sublabel_cheevos_entry( return 0; } +static int action_bind_sublabel_configurations_settings_list( + file_list_t *list, + unsigned type, unsigned i, + const char *label, const char *path, + char *s, size_t len) +{ + + strlcpy(s, msg_hash_to_str(MENU_ENUM_SUBLABEL_CONFIGURATION_SETTINGS), len); + return 0; +} + static int action_bind_sublabel_config_save_on_exit( file_list_t *list, unsigned type, unsigned i, @@ -460,6 +471,9 @@ int menu_cbs_init_bind_sublabel(menu_file_list_cbs_t *cbs, case MENU_ENUM_LABEL_CONFIG_SAVE_ON_EXIT: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_config_save_on_exit); break; + case MENU_ENUM_LABEL_CONFIGURATIONS_LIST: + BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_configurations_settings_list); + break; case MENU_ENUM_LABEL_VIDEO_THREADED: BIND_ACTION_SUBLABEL(cbs, action_bind_sublabel_video_threaded); break; diff --git a/msg_hash.h b/msg_hash.h index c831603e12..917bf4559e 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -1953,6 +1953,7 @@ enum msg_hash_enums MENU_ENUM_SUBLABEL_AUDIO_SETTINGS, MENU_ENUM_SUBLABEL_BLUETOOTH_ENABLE, MENU_ENUM_SUBLABEL_CHEEVOS_HARDCORE_MODE_ENABLE, + MENU_ENUM_SUBLABEL_CONFIGURATION_SETTINGS, MENU_ENUM_SUBLABEL_CONFIG_SAVE_ON_EXIT, MENU_ENUM_SUBLABEL_CORE_SETTINGS, MENU_ENUM_SUBLABEL_CPU_CORES,