Skip to content

Commit 910f3b4

Browse files
committed
Fix: Alt key inputs for the tool strip menu did not work. Passes test UnboundInputIsSeen.
1 parent ec59f94 commit 910f3b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/BizHawk.Client.Common/inputAdapters/InputManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,11 @@ public void ProcessInput(IPhysicalInputSource source, Func<string, bool> process
178178
if (!didHotkey) shouldDoEmuInput = true;
179179
if (shouldDoEmuInput)
180180
{
181+
// We have to do this even if it's not an emu input
182+
// because if Shift+A is bound it needs to see the Shift and A independently.
181183
ControllerInputCoalescer.Receive(ie);
182184
}
183-
bool didEmuInput = shouldDoEmuInput;
185+
bool didEmuInput = shouldDoEmuInput && isEmuInput;
184186

185187
if (!didHotkey && !didEmuInput)
186188
{

0 commit comments

Comments
 (0)