diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-21 23:43:20 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-21 23:43:20 +0100 |
commit | cd727a453a7d42a61bd161ea0c9947aee644e4f1 (patch) | |
tree | 9edff3d29292be84d4a7d76df993fdc96aeb082a /NorthstarDedicatedTest/dllmain.cpp | |
parent | 125f53aaa690e4870af88aa3a8947ac5ac0b435d (diff) | |
download | NorthstarLauncher-cd727a453a7d42a61bd161ea0c9947aee644e4f1.tar.gz NorthstarLauncher-cd727a453a7d42a61bd161ea0c9947aee644e4f1.zip |
more work on dedicated and launcher
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 12268d85..e5ea9517 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -52,7 +52,10 @@ void InitialiseNorthstar() AddDllLoadCallback("engine.dll", InitialiseEngineGameUtilFunctions); if (IsDedicated()) + { AddDllLoadCallback("engine.dll", InitialiseDedicated); + AddDllLoadCallback("materialsystem_dx11.dll", InitialiseDedicatedMaterialSystem); + } AddDllLoadCallback("engine.dll", InitialiseConVars); AddDllLoadCallback("engine.dll", InitialiseConCommands); |