diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-03-15 05:57:15 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-03-15 05:57:15 +0000 |
commit | 50e69bde548c5a1af3385f0eff6aa14c088c21c5 (patch) | |
tree | 24a050f6d31b43b7196f0ea8b6283e2d76bc561a /NorthstarDedicatedTest/dllmain.cpp | |
parent | 96aa95aede1fb1f3fde3d2c08728c37520bea4c2 (diff) | |
download | NorthstarLauncher-50e69bde548c5a1af3385f0eff6aa14c088c21c5.tar.gz NorthstarLauncher-50e69bde548c5a1af3385f0eff6aa14c088c21c5.zip |
add mod binks, mod rpak loading, and support for non-preload vpks/rpaks
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 6a079da0..edf4161a 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -38,10 +38,11 @@ #include "clientchathooks.h" #include "localchatwriter.h" #include "scriptservertoclientstringcommand.h" -#include <string.h> -#include "pch.h" #include "plugin_abi.h" #include "plugins.h" +#include "clientvideooverrides.h" +#include <string.h> +#include "pch.h" #include "rapidjson/document.h" #include "rapidjson/stringbuffer.h" @@ -241,6 +242,7 @@ bool InitialiseNorthstar() AddDllLoadCallback("client.dll", InitialiseClientChatHooks); AddDllLoadCallback("client.dll", InitialiseLocalChatWriter); AddDllLoadCallback("client.dll", InitialiseScriptServerToClientStringCommands); + AddDllLoadCallback("client.dll", InitialiseClientVideoOverrides); } AddDllLoadCallback("engine.dll", InitialiseEngineSpewFuncHooks); |