diff --git a/intl/msg_hash_us.c b/intl/msg_hash_us.c index 2f2a618d84..d96c3ae45d 100644 --- a/intl/msg_hash_us.c +++ b/intl/msg_hash_us.c @@ -1612,6 +1612,10 @@ int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len) snprintf(s, len, "Disconnects an active Netplay connection."); break; + case MENU_ENUM_LABEL_NETPLAY_SETTINGS: + snprintf(s, len, + "Setting related to Netplay."); + break; case MENU_ENUM_LABEL_DYNAMIC_WALLPAPER: snprintf(s, len, "Dynamically load a new wallpaper \n" @@ -2488,6 +2492,8 @@ static const char *menu_hash_to_str_us_label_enum(enum msg_hash_enums msg) return "menu_netplay_enable_client"; case MENU_ENUM_LABEL_NETPLAY_DISCONNECT: return "menu_netplay_disconnect"; + case MENU_ENUM_LABEL_NETPLAY_SETTINGS: + return "menu_netplay_settings"; case MENU_ENUM_LABEL_DPI_OVERRIDE_ENABLE: return "dpi_override_enable"; case MENU_ENUM_LABEL_DPI_OVERRIDE_VALUE: @@ -3825,6 +3831,8 @@ const char *msg_hash_to_str_us(enum msg_hash_enums msg) return "Connect to Netplay host"; case MENU_ENUM_LABEL_VALUE_NETPLAY_DISCONNECT: return "Disconnect"; + case MENU_ENUM_LABEL_VALUE_NETPLAY_SETTINGS: + return "Netplay settings"; case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE: return "DPI Override Enable"; case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE: diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index 430aac9fb0..bed7ed9e22 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -1522,6 +1522,11 @@ static int menu_displaylist_parse_netplay( MENU_ENUM_LABEL_NETPLAY_DISCONNECT, MENU_SETTING_ACTION, 0, 0); + menu_entries_append_enum(info->list, + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NETPLAY_SETTINGS), + msg_hash_to_str(MENU_ENUM_LABEL_NETPLAY_SETTINGS), + MENU_ENUM_LABEL_NETWORK_SETTINGS, MENU_SETTING_GROUP, 0, 0); + #else menu_entries_append_enum(info->list, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_ITEMS), diff --git a/msg_hash.h b/msg_hash.h index 2267279c99..f0f6b4b0c7 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -967,6 +967,8 @@ enum msg_hash_enums MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE_CLIENT, MENU_ENUM_LABEL_NETPLAY_DISCONNECT, MENU_ENUM_LABEL_VALUE_NETPLAY_DISCONNECT, + MENU_ENUM_LABEL_NETPLAY_SETTINGS, + MENU_ENUM_LABEL_VALUE_NETPLAY_SETTINGS,