mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
InputCommon: small hotkey threshold symmetry fix
This commit is contained in:
@ -503,7 +503,7 @@ public:
|
|||||||
const bool is_suppressed = s_hotkey_suppressions.IsSuppressedIgnoringModifiers(
|
const bool is_suppressed = s_hotkey_suppressions.IsSuppressedIgnoringModifiers(
|
||||||
m_final_input->GetInput(), m_modifiers);
|
m_final_input->GetInput(), m_modifiers);
|
||||||
|
|
||||||
if (final_input_state < CONDITION_THRESHOLD)
|
if (final_input_state <= CONDITION_THRESHOLD)
|
||||||
m_is_blocked = false;
|
m_is_blocked = false;
|
||||||
|
|
||||||
// If some other hotkey suppressed us, require a release of final input to be ready again.
|
// If some other hotkey suppressed us, require a release of final input to be ready again.
|
||||||
|
Reference in New Issue
Block a user