mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
HotkeyManager: Activate hotkey when key is pressed.
As opposed to activating the hotkey when it is released.
This commit is contained in:
parent
75fc213359
commit
3814b5b702
@ -159,16 +159,14 @@ bool IsPressed(int Id, bool held)
|
||||
unsigned int setKey = Id % 32;
|
||||
if (s_hotkey.button[set] & (1 << setKey))
|
||||
{
|
||||
bool pressed = !!(s_hotkeyDown[set] & (1 << setKey));
|
||||
s_hotkeyDown[set] |= (1 << setKey);
|
||||
if (held)
|
||||
if (!pressed || held)
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
bool pressed = !!(s_hotkeyDown[set] & (1 << setKey));
|
||||
s_hotkeyDown[set] &= ~(1 << setKey);
|
||||
if (pressed)
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user