diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-26 15:13:45 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-09-26 15:13:45 +0100 |
commit | a4434a4db16c347d5453354c1a15555d168ec7b9 (patch) | |
tree | 976188f0fef133c1f8fc7ebf757296b0ea848a7e /NorthstarDedicatedTest/gameutils.cpp | |
parent | e98fc31a93dfc9a14db7bb5510d25df0226d6fd3 (diff) | |
download | NorthstarLauncher-a4434a4db16c347d5453354c1a15555d168ec7b9.tar.gz NorthstarLauncher-a4434a4db16c347d5453354c1a15555d168ec7b9.zip |
commandline struct change, dedicated refactor
Diffstat (limited to 'NorthstarDedicatedTest/gameutils.cpp')
-rw-r--r-- | NorthstarDedicatedTest/gameutils.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/gameutils.cpp b/NorthstarDedicatedTest/gameutils.cpp index bf9ae3e5..1f7870b0 100644 --- a/NorthstarDedicatedTest/gameutils.cpp +++ b/NorthstarDedicatedTest/gameutils.cpp @@ -9,7 +9,10 @@ Cbuf_AddTextType Cbuf_AddText; Cbuf_ExecuteType Cbuf_Execute; // hoststate stuff -CHostState* g_GameCHostStateSingleton; +CHostState* g_pHostState; + +// cengine stuff +CEngine* g_pEngine; // network stuff ConVar* Cvar_hostport; @@ -27,7 +30,8 @@ void InitialiseEngineGameUtilFunctions(HMODULE baseAddress) Cbuf_AddText = (Cbuf_AddTextType)((char*)baseAddress + 0x1203B0); Cbuf_Execute = (Cbuf_ExecuteType)((char*)baseAddress + 0x1204B0); - g_GameCHostStateSingleton = (CHostState*)((char*)baseAddress + 0x7CF180); + g_pHostState = (CHostState*)((char*)baseAddress + 0x7CF180); + g_pEngine = (CEngine*)((char*)baseAddress + 0x7D70C8); Cvar_hostport = (ConVar*)((char*)baseAddress + 0x13FA6070); |