diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-08-24 23:53:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 00:53:45 +0200 |
commit | c3d20c8409a35772e371129d015913b7f08743fc (patch) | |
tree | 5037b60a89ca3eebb99311a38c1f6dbcdf267d1e /NorthstarDLL/logging.cpp | |
parent | cf9743e9b874b76e56a57d56e60e03aaa8a52ad6 (diff) | |
download | NorthstarLauncher-c3d20c8409a35772e371129d015913b7f08743fc.tar.gz NorthstarLauncher-c3d20c8409a35772e371129d015913b7f08743fc.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 38430c76..fe340b29 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); } |