From d1479c74df486c9386493ae6e4710efe63063b4c Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Wed, 29 Jan 2020 15:30:30 -0600 Subject: [PATCH] Fixed switching of DInput only profiles --- DS4Windows/DS4Control/ScpUtil.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DS4Windows/DS4Control/ScpUtil.cs b/DS4Windows/DS4Control/ScpUtil.cs index 7db8393..1743753 100644 --- a/DS4Windows/DS4Control/ScpUtil.cs +++ b/DS4Windows/DS4Control/ScpUtil.cs @@ -4936,7 +4936,8 @@ namespace DS4Windows xinputStatus = true; } } - else if (oldContType != outputDevType[device]) + else if (!dinputOnly[device] && + oldContType != outputDevType[device]) { xinputPlug = true; xinputStatus = true;