mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-24 17:49:52 +01:00
make sure we always get the key_up message so keys don't get stuck
This commit is contained in:
parent
d0de68bf42
commit
3b4fcb09e2
@ -53,20 +53,20 @@ LRESULT CALLBACK keyboard_hook_proc(int code, WPARAM wParam, LPARAM lParam)
|
|||||||
g_ddraw.alt_key_down = alt_down;
|
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 */
|
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))
|
(real_GetAsyncKeyState(g_config.hotkeys.unlock_cursor1) & 0x8000))
|
||||||
{
|
{
|
||||||
mouse_unlock();
|
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))
|
(real_GetAsyncKeyState(g_config.hotkeys.unlock_cursor2) & 0x8000))
|
||||||
{
|
{
|
||||||
mouse_unlock();
|
mouse_unlock();
|
||||||
return 1;
|
|
||||||
|
if (!key_up)
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user