Fix check for sync byte

This commit is contained in:
Travis Nickles 2017-05-25 02:56:36 -07:00
parent 5a0fb09291
commit c7a840194c

View File

@ -800,7 +800,7 @@ namespace DS4Windows
if (conType == ConnectionType.SONYWA) if (conType == ConnectionType.SONYWA)
{ {
bool noneSynced = inputReport[31] == 0; bool noneSynced = inputReport[31] != 0;
if (noneSynced != synced) if (noneSynced != synced)
{ {
SyncChange?.Invoke(this, EventArgs.Empty); SyncChange?.Invoke(this, EventArgs.Empty);