From cf002f8fa81d7213766891b7078d2e9cc591f036 Mon Sep 17 00:00:00 2001 From: GaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com> Date: Mon, 1 Feb 2021 21:24:17 +0100 Subject: [PATCH] fix softlock when binding combo binds --- src/core/Frontend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Frontend.cpp b/src/core/Frontend.cpp index 3d2a1c8e..b2a8643f 100644 --- a/src/core/Frontend.cpp +++ b/src/core/Frontend.cpp @@ -872,7 +872,7 @@ CMenuManager::CheckCodesForControls(int typeOfControl) #endif } - if (escPressed) { + if (escPressed || DisplayComboButtonErrMsg /* temporary fix until target combos are properly fixed in re3 */) { pControlEdit = nil; m_bWaitingForNewKeyBind = false; m_KeyPressedCode = -1;