aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/dedicated.cpp
diff options
context:
space:
mode:
authorHappyDOGE <28511119+HappyDOGE@users.noreply.github.com>2021-12-28 13:34:09 +0300
committerHappyDOGE <28511119+HappyDOGE@users.noreply.github.com>2021-12-28 13:34:09 +0300
commit4e9e9d9766663c39e21fcdd33e865cdc8cbf7e6a (patch)
tree1592f5979a10af234f773d71ea9142895a9fb897 /NorthstarDedicatedTest/dedicated.cpp
parent8179de9831dd415794269015a40de44baa4c29d1 (diff)
downloadNorthstarLauncher-4e9e9d9766663c39e21fcdd33e865cdc8cbf7e6a.tar.gz
NorthstarLauncher-4e9e9d9766663c39e21fcdd33e865cdc8cbf7e6a.zip
fix quick edit enabled message
Diffstat (limited to 'NorthstarDedicatedTest/dedicated.cpp')
-rw-r--r--NorthstarDedicatedTest/dedicated.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/NorthstarDedicatedTest/dedicated.cpp b/NorthstarDedicatedTest/dedicated.cpp
index 91e9cef6..f77567ec 100644
--- a/NorthstarDedicatedTest/dedicated.cpp
+++ b/NorthstarDedicatedTest/dedicated.cpp
@@ -410,8 +410,6 @@ void InitialiseDedicated(HMODULE engineAddress)
// Disable Quick Edit mode to reduce chance of user unintentionally hanging their server by selecting something.
if (!CommandLine()->CheckParm("-bringbackquickedit"))
{
- spdlog::info("Quick Edit enabled by user request");
-
HANDLE stdIn = GetStdHandle(STD_INPUT_HANDLE);
DWORD mode = 0;
@@ -425,7 +423,7 @@ void InitialiseDedicated(HMODULE engineAddress)
SetConsoleMode(stdIn, mode);
}
}
- }
+ } else spdlog::info("Quick Edit enabled by user request");
// create console input thread
if (!CommandLine()->CheckParm("-noconsoleinput"))