Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ermaccer committed Mar 23, 2022
1 parent 02af237 commit 3a0e6bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion MK11Hook/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void OnInitializeHook()


InjectHook(_addr(0x14086D970), tramp->Jump(MK11Hooks::HookSetSelectScreen), PATCH_JUMP);
InjectHook(_addr(0x1405992A7), tramp->Jump(MK11Hooks::HookSetLadderScreen));
InjectHook(_addr(0x1405992AE), tramp->Jump(MK11Hooks::HookSetLadderScreen));



Expand All @@ -71,6 +71,9 @@ void OnInitializeHook()
if (SettingsMgr->bEnableGamepadSupport)
InjectHook(_addr(0x14238A761), tramp->Jump(XInputGetState_Hook), PATCH_JUMP);

Nop(_addr(0x141B488E4), 5);
Nop(_addr(0x141B48909), 6);
Nop(_addr(0x141B4891C), 6);
}

bool ValidateGameVersion()
Expand Down

0 comments on commit 3a0e6bc

Please sign in to comment.