diff options
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index c5a914e5..845749eb 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -52,8 +52,7 @@ BOOL APIENTRY DllMain( HMODULE hModule, void WaitForDebugger(HMODULE baseAddress) { // earlier waitfordebugger call than is in vanilla, just so we can debug stuff a little easier - //if (CommandLine()->CheckParm("-waitfordebugger")) - if (strstr(GetCommandLineA(), "-waitfordebugger")) + if (CommandLine()->CheckParm("-waitfordebugger")) { spdlog::info("waiting for debugger..."); |