- Duke/RR: Fix incorrect boolean used in boatApplyTurn() when implementing fcc2521347bb528d7a5bcd3996c509db85e993f0.

This commit is contained in:
Mitchell Richters 2020-11-06 17:11:15 +11:00
parent 74dfbfe6f8
commit f0b9029726

View file

@ -701,7 +701,7 @@ static double boatApplyTurn(player_struct *p, ControlInfo* const hidInput, bool
p->TiltStatus = -10; p->TiltStatus = -10;
} }
if (kbdRight) if (kbdLeft)
turnvel -= turnheldtime >= TURBOTURNTIME ? baseVel : baseVel * velScale; turnvel -= turnheldtime >= TURBOTURNTIME ? baseVel : baseVel * velScale;
if (hidInput->mouseturnx < 0) if (hidInput->mouseturnx < 0)