fix obvious bug in last checkin

This commit is contained in:
zeromus 2011-07-09 23:18:13 +00:00
parent 1e59c2f530
commit 4ac74a20b3
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ namespace BizHawk.MultiClient
WorkingDictionary<string, bool> LastState = new WorkingDictionary<string, bool>();
HashSet<string> Ignore = new HashSet<string>(new[] { "LeftShift", "RightShift" });
HashSet<string> Ignore = new HashSet<string>(new[] { "LeftShift", "RightShift", "LeftControl", "RightControl", "LeftAlt", "RightAlt" });
void HandleButton(string button, bool newState)
{
if (Ignore.Contains(button)) return;