Skip to content

Commit

Permalink
Potentially fix inverted touchpad lock issue for Buds2
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb authored Feb 3, 2024
1 parent 917ff0b commit 7fd0a41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GalaxyBudsClient/Message/Encoder/LockTouchpadEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static SPPMessage Build(bool lockAll, bool tapOn, bool doubleTapOn, bool
MemoryStream stream = new MemoryStream();
BinaryWriter writer = new BinaryWriter(stream);

writer.Write(lockAll);
writer.Write(!lockAll);
writer.Write(tapOn);
writer.Write(doubleTapOn);
writer.Write(tripleTapOn);
Expand All @@ -21,4 +21,4 @@ public static SPPMessage Build(bool lockAll, bool tapOn, bool doubleTapOn, bool
return new SPPMessage(SPPMessage.MessageIds.LOCK_TOUCHPAD, SPPMessage.MsgType.Request, data);
}
}
}
}

0 comments on commit 7fd0a41

Please sign in to comment.