summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Romeo <vittorio.romeo@outlook.com>2021-11-04 19:51:49 +0000
committerVittorio Romeo <vittorio.romeo@outlook.com>2021-11-04 19:51:49 +0000
commit338b10b661f7ca597aaa9659ca0272fda9827fd6 (patch)
tree0ec296d6c0e5da691f945492391e24d154a3796e
parentb4189bd021ccdb313089237c30b768970ac588eb (diff)
Change client/server game version mismatch from error to log warning
-rw-r--r--src/SSVOpenHexagon/Core/MenuGame.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/SSVOpenHexagon/Core/MenuGame.cpp b/src/SSVOpenHexagon/Core/MenuGame.cpp
index ba47ad66..ecf39222 100644
--- a/src/SSVOpenHexagon/Core/MenuGame.cpp
+++ b/src/SSVOpenHexagon/Core/MenuGame.cpp
@@ -2585,8 +2585,9 @@ void MenuGame::update(ssvu::FT mFT)
[&](const HexagonClient::EGameVersionMismatch&)
{
- showHCEventDialogBox(
- true /* error */, "CLIENT/SERVER GAME VERSION MISMATCH");
+ ssvu::lo("hg::MenuGame::update")
+ << "Client/server game version mismatch, likely not a "
+ "problem\n";
},
[&](const HexagonClient::EProtocolVersionMismatch&)