addresses updated + menu shortcut set to INS

This commit is contained in:
Jadis0x
2024-05-21 22:43:05 +03:00
parent d32b92d1e3
commit ad4bf3e659
7 changed files with 251871 additions and 252134 deletions

View File

@@ -597,12 +597,12 @@ HRESULT __stdcall hookD3D11Present(IDXGISwapChain* pSwapChain, UINT SyncInterval
return phookD3D11Present(pSwapChain, SyncInterval, Flags);
}
if (GetKeyState('Q') & 0x8000) {
if (GetKeyState(VK_INSERT) & 0x8000) {
pressed = true;
}
else if (!(GetKeyState('Q') & 0x8000) && pressed) {
else if (!(GetKeyState(VK_INSERT) & 0x8000) && pressed) {
open_menu = !open_menu;
pressed = false;