mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- Duke/RR: Fix incorrect boolean used in boatApplyTurn()
when implementing fcc2521347bb528d7a5bcd3996c509db85e993f0.
This commit is contained in:
parent
74dfbfe6f8
commit
f0b9029726
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ static double boatApplyTurn(player_struct *p, ControlInfo* const hidInput, bool
|
|||
p->TiltStatus = -10;
|
||||
}
|
||||
|
||||
if (kbdRight)
|
||||
if (kbdLeft)
|
||||
turnvel -= turnheldtime >= TURBOTURNTIME ? baseVel : baseVel * velScale;
|
||||
|
||||
if (hidInput->mouseturnx < 0)
|
||||
|
|
Loading…
Reference in a new issue