From 3137983b9c2615924f44a3c6a1e643bac2286fd4 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Sun, 22 Apr 2018 01:47:40 -0500 Subject: [PATCH] Removed sending output report when charging status changes for SONYWA Another Windows 7 only bug. Old workaround might not be needed anymore due to recent changes. Related to issue #262 --- DS4Windows/DS4Library/DS4Device.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/DS4Windows/DS4Library/DS4Device.cs b/DS4Windows/DS4Library/DS4Device.cs index e89dd5d..e9358c0 100644 --- a/DS4Windows/DS4Library/DS4Device.cs +++ b/DS4Windows/DS4Library/DS4Device.cs @@ -996,10 +996,6 @@ namespace DS4Windows SyncChange?.Invoke(this, EventArgs.Empty); sendOutputReport(true); } - else if (oldCharging != charging) - { - sendOutputReport(true); - } } ds4InactiveFrame = cState.FrameCounter == pState.FrameCounter;