Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add east asian relay server #17055

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions intl/msg_hash_en.h
Original file line number Diff line number Diff line change
Expand Up @@ -1155,6 +1155,10 @@ MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_4,
"South-east Asia"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_5,
"East Asia (Chuncheon, South Korea)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT,
"Net-play TCP Port"
Expand Down
6 changes: 5 additions & 1 deletion intl/msg_hash_ko.h
Original file line number Diff line number Diff line change
Expand Up @@ -7443,9 +7443,13 @@ MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_4,
"동남아시아"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_5,
"동아시아 (춘천, 한국)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_CUSTOM,
"사용자"
"직접 설정"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS,
Expand Down
1 change: 1 addition & 0 deletions msg_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -3825,6 +3825,7 @@ enum msg_hash_enums
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_2,
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_3,
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_4,
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_5,
MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_CUSTOM,
MENU_LABEL(VIDEO_WINDOW_SHOW_DECORATIONS),
MENU_LABEL(VIDEO_WINDOW_SAVE_POSITION),
Expand Down
2 changes: 1 addition & 1 deletion network/netplay/netplay_defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define NETPLAY_HOST_STR_LEN 32
#define NETPLAY_HOST_LONGSTR_LEN 256

#define NETPLAY_MITM_SERVERS 5
#define NETPLAY_MITM_SERVERS 6

#define NETPLAY_CHAT_MAX_MESSAGES 5
#define NETPLAY_CHAT_MAX_SIZE 96
Expand Down
1 change: 1 addition & 0 deletions network/netplay/netplay_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ const mitm_server_t netplay_mitm_server_list[NETPLAY_MITM_SERVERS] = {
{ "madrid", MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_2 },
{ "saopaulo", MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_3 },
{ "singapore", MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_4 },
{ "chuncheon", MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_5 },
{ "custom", MENU_ENUM_LABEL_VALUE_NETPLAY_MITM_SERVER_LOCATION_CUSTOM }
};

Expand Down
Loading