diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-09 16:01:01 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-09 16:01:01 +0100 |
commit | fc0e6630fb6dccbeeca6ea65c061824cd7a848e1 (patch) | |
tree | 04965579e99b5920f9bbd2c5b6e8b5d12d79b7bb /NorthstarDedicatedTest/dllmain.cpp | |
parent | fb82ecfec5893b00f68b72f912c6b3975b5fdb4f (diff) | |
download | NorthstarLauncher-fc0e6630fb6dccbeeca6ea65c061824cd7a848e1.tar.gz NorthstarLauncher-fc0e6630fb6dccbeeca6ea65c061824cd7a848e1.zip |
add IsValveMod patches
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 3439c6ce..0a5eb388 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -3,6 +3,7 @@ #include "main.h" #include "squirrel.h" #include "dedicated.h" +#include "dedicatedmaterialsystem.h" #include "sourceconsole.h" #include "logging.h" #include "concommand.h" @@ -17,6 +18,7 @@ #include "chatcommand.h" #include "modlocalisation.h" #include "playlist.h" +#include "securitypatches.h" bool initialised = false; @@ -63,6 +65,7 @@ void InitialiseNorthstar() if (!IsDedicated()) { + AddDllLoadCallback("engine.dll", InitialiseClientEngineSecurityPatches); AddDllLoadCallback("client.dll", InitialiseClientSquirrel); AddDllLoadCallback("client.dll", InitialiseSourceConsole); AddDllLoadCallback("engine.dll", InitialiseChatCommands); |