diff --git a/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp b/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp index 16ac954465e..bfb1277abd2 100644 --- a/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp +++ b/GeneralsMD/Code/GameEngine/Source/GameClient/GUI/GUICallbacks/Menus/ScoreScreen.cpp @@ -664,7 +664,7 @@ WindowMsgHandledType ScoreScreenSystem( GameWindow *window, UnsignedInt msg, #if defined(USE_TEST_ENV) strMatchURL.format("https://www.playgenerals.online/viewmatch?match=%" PRIu64 "&env=test", currentMatchID); #else - strMatchURL.format("https://www.strata.gamereplays.org/zh/match/%" PRIu64, currentMatchID); + strMatchURL.format("https://strata.gamereplays.org/zh/match/%" PRIu64, currentMatchID); #endif ShellExecuteA(NULL, "open", strMatchURL.str(), NULL, NULL, SW_SHOWNORMAL); } @@ -1212,7 +1212,7 @@ void initInternetMultiPlayer(void) #if defined(USE_TEST_ENV) strMatchURL.format(L"\nView match data, participants, replays, anti-cheat data: https://www.playgenerals.online/viewmatch?match=%" PRIu64 "&env=test", lobby.match_id); #else - strMatchURL.format(L"\nView match data, participants, replays, anti-cheat data: https://www.strata.gamereplays.org/zh/match/%" PRIu64, lobby.match_id); + strMatchURL.format(L"\nView match data, participants, replays, anti-cheat data: https://strata.gamereplays.org/zh/match/%" PRIu64, lobby.match_id); #endif buttonContinue->winSetText(UnicodeString(L"VIEW MATCH ONLINE"));