Sometimes when i press Insert the menu doesn't open.. is anyone experiencing the same thing rn?
It happens to me too. Sometimes I can't even close the cheat's interface.
never happened to me
Replace in hooks.cpp
This:
if (GetAsyncKeyState(config.misc.menuKey) & 1) {
with this:
if (msg == WM_KEYDOWN && LOWORD(wParam) == config.misc.menuKey) {
Most helpful comment
Replace in hooks.cpp
This:
if (GetAsyncKeyState(config.misc.menuKey) & 1) {with this:
if (msg == WM_KEYDOWN && LOWORD(wParam) == config.misc.menuKey) {