From ad69b1c440fc3e6adaa480b1e8d0747afdc77985 Mon Sep 17 00:00:00 2001 From: Intop <78622918+Intoprelised@users.noreply.github.com> Date: Fri, 10 Sep 2021 11:41:03 -0400 Subject: [PATCH] Fix code error (#4509) --- Memory/Hooks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Memory/Hooks.cpp b/Memory/Hooks.cpp index 47252e35..10820c0d 100644 --- a/Memory/Hooks.cpp +++ b/Memory/Hooks.cpp @@ -79,7 +79,7 @@ void Hooks::Init() { int offset = *reinterpret_cast(sigOffset + 3); uintptr_t** moveInputVtable = reinterpret_cast(sigOffset + offset + 7); if (moveInputVtable == 0x0 || sigOffset == 0x0) - logF("C_GameMode signature not working!!!"); + logF("C_MoveInputHandler signature not working!!!"); else { g_Hooks.MoveInputHandler_tickHook = std::make_unique(moveInputVtable[1], Hooks::MoveInputHandler_tick); }