Quick fix to #722 (I think)

This commit is contained in:
adelikat 2016-10-31 13:31:48 -05:00
parent 0596fc6d7c
commit 82fa40dfc8
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,5 @@
using System;
using System.Linq;
using System.Collections.Generic;
using SlimDX;
using SlimDX.DirectInput;
@ -42,7 +43,7 @@ namespace BizHawk.Client.EmuHawk
public static void UpdateAll()
{
foreach (var device in Devices)
foreach (var device in Devices.ToList())
device.Update();
}

View File

@ -1,4 +1,5 @@
using System;
using System.Linq;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using SlimDX.XInput;
@ -96,7 +97,7 @@ namespace BizHawk.Client.EmuHawk
public static void UpdateAll()
{
if(IsAvailable)
foreach (var device in Devices)
foreach (var device in Devices.ToList())
device.Update();
}