diff --git a/src/decomp/game/mario_actions_airborne.c b/src/decomp/game/mario_actions_airborne.c index 54450ba..804ac5a 100644 --- a/src/decomp/game/mario_actions_airborne.c +++ b/src/decomp/game/mario_actions_airborne.c @@ -277,7 +277,7 @@ void update_lava_boost_or_twirling(struct MarioState *m) { } void update_flying_yaw(struct MarioState *m) { - s16 targetYawVel = -(s16)(m->controller->stickX * (m->forwardVel / 4.0f)); + s16 targetYawVel = (s16)(m->controller->stickX * (m->forwardVel / 4.0f)); if (targetYawVel > 0) { if (m->angleVel[1] < 0) { @@ -306,7 +306,7 @@ void update_flying_yaw(struct MarioState *m) { } void update_flying_pitch(struct MarioState *m) { - s16 targetPitchVel = -(s16)(m->controller->stickY * (m->forwardVel / 5.0f)); + s16 targetPitchVel = (s16)(m->controller->stickY * (m->forwardVel / 5.0f)); if (targetPitchVel > 0) { if (m->angleVel[0] < 0) {