Skip to content

Commit

Permalink
Fixed bug with modx up b
Browse files Browse the repository at this point in the history
  • Loading branch information
avahe-kellenberger committed Dec 30, 2023
1 parent 1972e28 commit 1e2d38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modes/UltimateR4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void UltimateR4::UpdateAnalogOutputs(InputState &inputs, OutputState &outputs) {
if (inputs.b) {
// (33.29) = 67 44
outputs.leftStickX = ANALOG_STICK_NEUTRAL + (directions.x * 67);
outputs.leftStickY = ANALOG_STICK_NEUTRAL + (directions.y * 44);
outputs.leftStickY = ANALOG_STICK_NEUTRAL + (directions.y * 60);
// (39.38) = 67 55
if (inputs.c_down) {
outputs.leftStickX = ANALOG_STICK_NEUTRAL + (directions.x * 67);
Expand Down

0 comments on commit 1e2d38e

Please sign in to comment.