diff --git a/include/Common.h b/include/Common.h index 380af42..74ec111 100644 --- a/include/Common.h +++ b/include/Common.h @@ -90,7 +90,7 @@ private: static inline std::mutex mShutdownHandlersMutex {}; static inline std::deque mShutdownHandlers {}; - static inline Version mVersion { 2, 2, 0 }; + static inline Version mVersion { 2, 3, 0 }; }; std::string ThreadName(bool DebugModeOverride = false); diff --git a/src/Common.cpp b/src/Common.cpp index 385d6a7..915c216 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -185,7 +185,7 @@ std::string GetPlatformAgnosticErrorString() { if (*msgbuf) { return std::to_string(GetLastError()) + " - " + std::string(msgbuf); } else { - return std::to_string(GetLastError()) + return std::to_string(GetLastError()); } #else // posix return std::strerror(errno); diff --git a/src/TNetwork.cpp b/src/TNetwork.cpp index 638e7de..832fc84 100644 --- a/src/TNetwork.cpp +++ b/src/TNetwork.cpp @@ -62,7 +62,6 @@ void TNetwork::UDPServerMain() { //return; } - info(("Vehicle data network online on port ") + std::to_string(Application::Settings.Port) + (" with a Max of ") + std::to_string(Application::Settings.MaxPlayers) + (" Clients")); while (!mShutdown) {