From 6533585a070d5b921092944054dbc038c2d41d25 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Sun, 3 Mar 2019 19:27:57 -0600 Subject: [PATCH] Make sure to stop USB controller while suspending Related to issue #595 --- DS4Windows/DS4Control/ControlService.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DS4Windows/DS4Control/ControlService.cs b/DS4Windows/DS4Control/ControlService.cs index 3f497a5..0d5e044 100644 --- a/DS4Windows/DS4Control/ControlService.cs +++ b/DS4Windows/DS4Control/ControlService.cs @@ -510,6 +510,10 @@ namespace DS4Windows tempDevice.StopUpdate(); tempDevice.DisconnectDongle(true); } + else + { + tempDevice.StopUpdate(); + } } else {