InputCommon: small hotkey threshold symmetry fix

This commit is contained in:
Filoppi 2021-04-26 19:45:13 +03:00
parent ba2782e9d1
commit 799a368a7c
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ public:
const bool is_suppressed = s_hotkey_suppressions.IsSuppressedIgnoringModifiers(
m_final_input->GetInput(), m_modifiers);
if (final_input_state < CONDITION_THRESHOLD)
if (final_input_state <= CONDITION_THRESHOLD)
m_is_blocked = false;
// If some other hotkey suppressed us, require a release of final input to be ready again.