diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-03 01:28:51 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-03 01:28:51 +0100 |
commit | bf176fe728400b93295118e8d256c346c8c52d41 (patch) | |
tree | ef8e312b9498aa54e4fb788499eca7ddcbfc4dd0 /NorthstarDedicatedTest/dllmain.cpp | |
parent | eb56fcbe02f35ed4f418a7dc53cd9eb0ad95a504 (diff) | |
download | NorthstarLauncher-bf176fe728400b93295118e8d256c346c8c52d41.tar.gz NorthstarLauncher-bf176fe728400b93295118e8d256c346c8c52d41.zip |
fix playlist kv building
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 4e347d05..9fd62885 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -11,6 +11,7 @@ #include "serverauthentication.h" #include "scriptmodmenu.h" #include "scriptserverbrowser.h" +#include "keyvalues.h" bool initialised = false; @@ -64,6 +65,7 @@ void InitialiseNorthstar() AddDllLoadCallback("engine.dll", InitialiseServerAuthentication); AddDllLoadCallback("filesystem_stdio.dll", InitialiseFilesystem); + AddDllLoadCallback("engine.dll", InitialiseKeyValues); // mod manager after everything else AddDllLoadCallback("engine.dll", InitialiseModManager); |