fix error in IPCKeyInput

This commit is contained in:
zeromus 2015-08-14 19:10:55 -05:00
parent aa8b87129b
commit 3cbea04448
1 changed files with 3 additions and 0 deletions

View File

@ -56,7 +56,10 @@ namespace BizHawk.Client.EmuHawk
EventList.Clear();
lock (PendingEventList)
{
EventList.AddRange(PendingEventList);
PendingEventList.Clear();
}
return EventList;
}