Skip DirectInput initialization for device names containing "Xbox One" or "XINPUT"

This commit is contained in:
Alan Unger 2021-06-06 17:44:44 -04:00 committed by James Groom
parent 2549c3fa04
commit 206314445b
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ namespace BizHawk.Bizware.DirectX
{
Console.WriteLine("joy device: {0} `{1}`", device.InstanceGuid, device.ProductName);
if (device.ProductName.Contains("XBOX 360"))
if (device.ProductName.Contains("XBOX 360") || device.ProductName.Contains("Xbox One") || device.ProductName.Contains("XINPUT"))
continue; // Don't input XBOX 360 controllers into here; we'll process them via XInput (there are limitations in some trigger axes when xbox pads go over xinput)
var joystick = new Joystick(_directInput, device.InstanceGuid);