Skip to content

Commit

Permalink
Merge pull request #56 from dalethomas81/bugfix/dpad-mapping
Browse files Browse the repository at this point in the history
resolve dpad down left issue
  • Loading branch information
flok authored May 27, 2024
2 parents 2e06210 + 41d8293 commit 0f588a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydualsense/pydualsense.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ def setDPadState(self, dpad_state: int) -> None:
elif dpad_state == 5:
self.DpadUp = False
self.DpadDown = True
self.DpadLeft = False
self.DpadLeft = True
self.DpadRight = False
elif dpad_state == 6:
self.DpadUp = False
Expand Down

0 comments on commit 0f588a3

Please sign in to comment.