Quick fix to #722 (I think)
This commit is contained in:
parent
0596fc6d7c
commit
82fa40dfc8
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue