From 312d3b433e2f8cdd221a2e042b6c9c5d559dbfe3 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Thu, 25 May 2017 03:01:07 -0700 Subject: [PATCH] Change variable name and revert --- DS4Windows/DS4Library/DS4Device.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DS4Windows/DS4Library/DS4Device.cs b/DS4Windows/DS4Library/DS4Device.cs index b785b51..aeb9946 100644 --- a/DS4Windows/DS4Library/DS4Device.cs +++ b/DS4Windows/DS4Library/DS4Device.cs @@ -800,11 +800,11 @@ namespace DS4Windows if (conType == ConnectionType.SONYWA) { - bool noneSynced = inputReport[31] != 0; - if (noneSynced != synced) + bool controllerSynced = inputReport[31] == 0; + if (controllerSynced != synced) { SyncChange?.Invoke(this, EventArgs.Empty); - synced = noneSynced; + synced = controllerSynced; } }