diff --git a/CMakeLists.txt b/CMakeLists.txt index aca3d99..4ac887d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,6 +12,7 @@ elseif (WIN32) # This might cause issues with old windows headers, but it's worth the trouble to keep the code # completely cross platform. For fixes to common issues arising from /permissive- visit: # https://docs.microsoft.com/en-us/cpp/build/reference/permissive-standards-conformance + message(${CMAKE_CXX_FLAGS_RELEASE}) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3 /permissive-") message(STATUS "MSVC -> forcing use of statically-linked runtime.") STRING(REPLACE "/MD" "/MT" CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE}) diff --git a/src/Init/Startup.cpp b/src/Init/Startup.cpp index 30936b7..e2324fa 100644 --- a/src/Init/Startup.cpp +++ b/src/Init/Startup.cpp @@ -9,7 +9,7 @@ std::string CustomIP; std::string GetSVer() { - return std::string(Sec("1.12")); + return std::string(Sec("1.13")); } std::string GetCVer() { return std::string(Sec("1.70"));