aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-04-26 00:13:39 +0200
committerGitHub <noreply@github.com>2022-04-26 00:13:39 +0200
commit3a1985d046d16861d833a4049b03b03413b2d650 (patch)
tree41a204f033028f6b0b18893506e2aa97df589544
parent90c123e6beabc833e8bbf0eae89653a522cc74bb (diff)
downloadNorthstarLauncher-3a1985d046d16861d833a4049b03b03413b2d650.tar.gz
NorthstarLauncher-3a1985d046d16861d833a4049b03b03413b2d650.zip
Write launcher version to log file (#153)
-rw-r--r--NorthstarDedicatedTest/dllmain.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp
index 26503f52..fc403e95 100644
--- a/NorthstarDedicatedTest/dllmain.cpp
+++ b/NorthstarDedicatedTest/dllmain.cpp
@@ -207,6 +207,10 @@ bool InitialiseNorthstar()
InitialiseLogging();
InstallInitialHooks();
CreateLogFiles();
+
+ // Write launcher version to log
+ spdlog::info("NorthstarLauncher version: {}", version);
+
InitialiseInterfaceCreationHooks();
AddDllLoadCallback("tier0.dll", InitialiseTier0GameUtilFunctions);