diff --git a/intl/msg_hash_lbl.h b/intl/msg_hash_lbl.h index b90ab38ac9..412e0148e3 100644 --- a/intl/msg_hash_lbl.h +++ b/intl/msg_hash_lbl.h @@ -157,6 +157,8 @@ MSG_HASH(MENU_ENUM_LABEL_CONFIG_SAVE_ON_EXIT, "config_save_on_exit") MSG_HASH(MENU_ENUM_LABEL_CONNECT_WIFI, "connect_wifi") +MSG_HASH(MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM, + "connect_room") MSG_HASH(MENU_ENUM_LABEL_CONTENT_ACTIONS, "content_actions") MSG_HASH(MENU_ENUM_LABEL_CONTENT_COLLECTION_LIST, diff --git a/menu/cbs/menu_cbs_ok.c b/menu/cbs/menu_cbs_ok.c index cff20c87b4..7cd975c3e1 100644 --- a/menu/cbs/menu_cbs_ok.c +++ b/menu/cbs/menu_cbs_ok.c @@ -3356,8 +3356,8 @@ finish: snprintf(s, sizeof(s), "Nickname: %s", netplay_room_list[i].nickname); menu_entries_append_enum(file_list, s, - msg_hash_to_str(MENU_ENUM_LABEL_CONNECT_WIFI), - MENU_ENUM_LABEL_CONNECT_WIFI, + msg_hash_to_str(MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM), + MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM, MENU_WIFI, 0, 0); } diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index 9e2eb89e59..145c6b9cac 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -2969,8 +2969,8 @@ static int menu_displaylist_parse_netplay_room_list( const char *label = s; menu_entries_append_enum(info->list, label, - msg_hash_to_str(MENU_ENUM_LABEL_CONNECT_WIFI), - MENU_ENUM_LABEL_CONNECT_WIFI, + msg_hash_to_str(MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM), + MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM, MENU_WIFI, 0, 0); } } diff --git a/msg_hash.h b/msg_hash.h index 1f1dfcc362..dffb8238ff 100644 --- a/msg_hash.h +++ b/msg_hash.h @@ -746,6 +746,7 @@ enum msg_hash_enums MENU_LABEL(NETPLAY_LAN_SCAN_SETTINGS), MENU_ENUM_LABEL_CONNECT_WIFI, + MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM, MENU_ENUM_LABEL_CONNECT_NETPLAY_LAN, MENU_LABEL(MENU_ENUM_LINEAR_FILTER),