diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-04-26 00:13:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 00:13:39 +0200 |
commit | 3a1985d046d16861d833a4049b03b03413b2d650 (patch) | |
tree | 41a204f033028f6b0b18893506e2aa97df589544 /NorthstarDedicatedTest/dllmain.cpp | |
parent | 90c123e6beabc833e8bbf0eae89653a522cc74bb (diff) | |
download | NorthstarLauncher-3a1985d046d16861d833a4049b03b03413b2d650.tar.gz NorthstarLauncher-3a1985d046d16861d833a4049b03b03413b2d650.zip |
Write launcher version to log file (#153)
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 4 |
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); |