diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-11 22:24:13 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-11 22:24:13 +0000 |
commit | db552e7bcf5b1c6b01dd655163e1dc0a9d840ab0 (patch) | |
tree | eb480b2754e4ba4653940571d7a7d089d07c37d6 /NorthstarDedicatedTest/dllmain.cpp | |
parent | 12b5d0b85a4a1cb55b068a3fbb357c30a52c1e20 (diff) | |
download | NorthstarLauncher-db552e7bcf5b1c6b01dd655163e1dc0a9d840ab0.tar.gz NorthstarLauncher-db552e7bcf5b1c6b01dd655163e1dc0a9d840ab0.zip |
write_persistence fixes and custom mainmenupromos
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 9d8dc9a7..f0265f67 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -22,6 +22,7 @@ #include "miscserverscript.h" #include "clientauthhooks.h" #include "scriptbrowserhooks.h" +#include "scriptmainmenupromos.h" #include "memalloc.h" bool initialised = false; @@ -100,6 +101,7 @@ void InitialiseNorthstar() AddDllLoadCallback("localize.dll", InitialiseModLocalisation); AddDllLoadCallback("engine.dll", InitialiseClientAuthHooks); AddDllLoadCallback("engine.dll", InitialiseScriptExternalBrowserHooks); + AddDllLoadCallback("client.dll", InitialiseScriptMainMenuPromos); } AddDllLoadCallback("server.dll", InitialiseServerSquirrel); |