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; } }