diff options
author | p0358 <p0358@users.noreply.github.com> | 2021-12-31 22:53:33 +0100 |
---|---|---|
committer | p0358 <p0358@users.noreply.github.com> | 2021-12-31 22:53:33 +0100 |
commit | 89699322407bd31e1440d27c26c8ee352f824d93 (patch) | |
tree | 07696a529d77b3ef412a838a82a9c13352dd78bd /NorthstarDedicatedTest/miscclientfixes.cpp | |
parent | 9b13df7bc6f4c09c3fdab27cd51fe76d30b756b8 (diff) | |
parent | f341986b591cee533994597de418df1752ad5e97 (diff) | |
download | NorthstarLauncher-89699322407bd31e1440d27c26c8ee352f824d93.tar.gz NorthstarLauncher-89699322407bd31e1440d27c26c8ee352f824d93.zip |
Merge branch 'main' of https://github.com/R2Northstar/NorthstarLauncher
Diffstat (limited to 'NorthstarDedicatedTest/miscclientfixes.cpp')
-rw-r--r-- | NorthstarDedicatedTest/miscclientfixes.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/miscclientfixes.cpp b/NorthstarDedicatedTest/miscclientfixes.cpp index d9fab647..dc68d18c 100644 --- a/NorthstarDedicatedTest/miscclientfixes.cpp +++ b/NorthstarDedicatedTest/miscclientfixes.cpp @@ -37,4 +37,10 @@ void InitialiseMiscClientFixes(HMODULE baseAddress) // will say i have about 0 clue what exactly these functions do, testing this it doesn't even seem like they do much of anything i can see tbh ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x5A92D0, &CrashingWeaponActivityFunc0Hook, reinterpret_cast<LPVOID*>(&CrashingWeaponActivityFunc0)); ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x5A9310, &CrashingWeaponActivityFunc1Hook, reinterpret_cast<LPVOID*>(&CrashingWeaponActivityFunc1)); + + // experimental: allow cl_extrapolate to be enabled without cheats + { + void* ptr = (char*)baseAddress + 0x275F9D9; + *((char*)ptr) = (char)0; + } }
\ No newline at end of file |