fix obvious bug in last checkin
This commit is contained in:
parent
1e59c2f530
commit
4ac74a20b3
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue