1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

make sure we always get the key_up message so keys don't get stuck

This commit is contained in:
FunkyFr3sh 2024-09-07 17:22:30 +02:00
parent d0de68bf42
commit 3b4fcb09e2

View File

@ -53,20 +53,20 @@ LRESULT CALLBACK keyboard_hook_proc(int code, WPARAM wParam, LPARAM lParam)
g_ddraw.alt_key_down = alt_down;
}
if (wParam == g_config.hotkeys.toggle_fullscreen && alt_down)
if (wParam == g_config.hotkeys.toggle_fullscreen && alt_down && key_down)
{
if (key_down)
util_toggle_fullscreen();
util_toggle_fullscreen();
return 1;
if (!key_up)
return 1;
}
if (wParam == g_config.hotkeys.toggle_maximize && alt_down)
if (wParam == g_config.hotkeys.toggle_maximize && alt_down && key_down)
{
if (key_down)
util_toggle_maximize();
util_toggle_maximize();
return 1;
if (!key_up)
return 1;
}
if (wParam == VK_F4 && g_config.homm_hack) /* Heroes of Might and Magic 3 and 4 */
@ -89,7 +89,9 @@ LRESULT CALLBACK keyboard_hook_proc(int code, WPARAM wParam, LPARAM lParam)
(real_GetAsyncKeyState(g_config.hotkeys.unlock_cursor1) & 0x8000))
{
mouse_unlock();
return 1;
if (!key_up)
return 1;
}
}
@ -99,7 +101,9 @@ LRESULT CALLBACK keyboard_hook_proc(int code, WPARAM wParam, LPARAM lParam)
(real_GetAsyncKeyState(g_config.hotkeys.unlock_cursor2) & 0x8000))
{
mouse_unlock();
return 1;
if (!key_up)
return 1;
}
}