From 7f3b6c83b23c4a6f3584d8b38d5ea2a561291a4f Mon Sep 17 00:00:00 2001 From: bulzipke Date: Wed, 2 Oct 2024 11:50:02 +0900 Subject: [PATCH] NetPlay : Add relay server ( chuncheon ) --- es-app/src/guis/GuiNetPlaySettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/guis/GuiNetPlaySettings.cpp b/es-app/src/guis/GuiNetPlaySettings.cpp index fc1b69f21..d155eded4 100644 --- a/es-app/src/guis/GuiNetPlaySettings.cpp +++ b/es-app/src/guis/GuiNetPlaySettings.cpp @@ -20,7 +20,7 @@ GuiNetPlaySettings::GuiNetPlaySettings(Window* window) : GuiSettings(window, _(" addGroup(_("OPTIONS")); addInputTextRow(_("PORT"), "global.netplay.port", false); - addOptionList(_("USE RELAY SERVER"), { { _("NONE"), "" },{ _("NEW YORK") , "nyc" },{ _("MADRID") , "madrid" },{ _("MONTREAL") , "montreal" },{ _("SAO PAULO") , "saopaulo" },{ _("CUSTOM") , "custom" } }, "global.netplay.relay", false); + addOptionList(_("USE RELAY SERVER"), { { _("NONE"), "" },{ _("NEW YORK") , "nyc" },{ _("MADRID") , "madrid" },{ _("MONTREAL") , "montreal" },{ _("SAO PAULO") , "saopaulo" },{ _("CHUNCHEON") , "chuncheon" },{ _("CUSTOM") , "custom" } }, "global.netplay.relay", false); addInputTextRow(_("CUSTOM RELAY SERVER"), "global.netplay.customserver", false); addSwitch(_("SHOW UNAVAILABLE GAMES"), _("Show rooms for games not present on this machine."), "NetPlayShowMissingGames", true, nullptr);