Skip to content

Commit

Permalink
Fixed button translation error (#425)
Browse files Browse the repository at this point in the history
Fixed button translation error from OutputControllerDualShock4 to IDualShock4Controller
  • Loading branch information
psyvern committed Jun 15, 2020
1 parent b499db2 commit debace5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BetterJoyForCemu/Controller/OutputControllerDualShock4.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private void DoUpdateInput(OutputControllerDualShock4InputState new_state) {
controller.SetButtonState(DualShock4Button.TriggerRight, new_state.trigger_right);

controller.SetButtonState(DualShock4Button.ThumbLeft, new_state.thumb_left);
controller.SetButtonState(DualShock4Button.ThumbRight, new_state.thumb_left);
controller.SetButtonState(DualShock4Button.ThumbRight, new_state.thumb_right);

controller.SetButtonState(DualShock4Button.Share, new_state.share);
controller.SetButtonState(DualShock4Button.Options, new_state.options);
Expand Down

0 comments on commit debace5

Please sign in to comment.