From c45bd306bfaf66179b92447e631fef7d11070f2d Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 20 Jul 2014 20:01:21 +0000 Subject: [PATCH] revert part of r7059 cosmetic refactorings which probably broke xinput on some systems --- BizHawk.Client.EmuHawk/Input/GamePad360.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Client.EmuHawk/Input/GamePad360.cs b/BizHawk.Client.EmuHawk/Input/GamePad360.cs index eacc2995f7..f926703771 100644 --- a/BizHawk.Client.EmuHawk/Input/GamePad360.cs +++ b/BizHawk.Client.EmuHawk/Input/GamePad360.cs @@ -17,6 +17,8 @@ namespace BizHawk.Client.EmuHawk IsAvailable = false; try { + //don't remove this code. it's important to catch errors on systems with broken xinput installs. + var test = new SlimDX.XInput.Controller(UserIndex.One).IsConnected; IsAvailable = true; } catch { }