From 4ac74a20b3344195423ccc377ba17eed7258f17e Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 9 Jul 2011 23:18:13 +0000 Subject: [PATCH] fix obvious bug in last checkin --- BizHawk.MultiClient/Input/Input.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/Input/Input.cs b/BizHawk.MultiClient/Input/Input.cs index 18d168c83d..ad533c2aed 100644 --- a/BizHawk.MultiClient/Input/Input.cs +++ b/BizHawk.MultiClient/Input/Input.cs @@ -81,7 +81,7 @@ namespace BizHawk.MultiClient WorkingDictionary LastState = new WorkingDictionary(); - HashSet Ignore = new HashSet(new[] { "LeftShift", "RightShift" }); + HashSet Ignore = new HashSet(new[] { "LeftShift", "RightShift", "LeftControl", "RightControl", "LeftAlt", "RightAlt" }); void HandleButton(string button, bool newState) { if (Ignore.Contains(button)) return;