diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-08-24 23:53:45 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-14 12:53:15 +0200 |
commit | 36088a380e345fd60d2b6f66f62521fd3f98141a (patch) | |
tree | 5c47a0406b6d67bf289a7794f19a9fe546fce6ab /NorthstarDLL/logging.cpp | |
parent | c120d0cceba005f661e66d4d95c96d0458cadfeb (diff) | |
download | NorthstarLauncher-36088a380e345fd60d2b6f66f62521fd3f98141a.tar.gz NorthstarLauncher-36088a380e345fd60d2b6f66f62521fd3f98141a.zip |
Rename `IsDedicated()` to `IsDedicatedServer()` (#252)
Diffstat (limited to 'NorthstarDLL/logging.cpp')
-rw-r--r-- | NorthstarDLL/logging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDLL/logging.cpp b/NorthstarDLL/logging.cpp index 8b752637..4c35f86a 100644 --- a/NorthstarDLL/logging.cpp +++ b/NorthstarDLL/logging.cpp @@ -203,7 +203,7 @@ long __stdcall ExceptionFilter(EXCEPTION_POINTERS* exceptionInfo) else spdlog::error("Failed to write minidump file {}!", stream.str()); - if (!IsDedicated()) + if (!IsDedicatedServer()) MessageBoxA( 0, "Northstar has crashed! Crash info can be found in R2Northstar/logs", "Northstar has crashed!", MB_ICONERROR | MB_OK); } |