mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
- Duke/RR: Fix an issue with reversing.
* Got the position of the bools wrong here when removing something unsafe from the input handler.
This commit is contained in:
parent
a9e606ca68
commit
ba8f1069ab
1 changed files with 4 additions and 4 deletions
|
@ -1470,11 +1470,8 @@ static void onMotorcycle(int snum, ESyncBits &actions)
|
|||
bool braking = false;
|
||||
int rng;
|
||||
|
||||
if (p->MotoSpeed < 0)
|
||||
{
|
||||
if (p->moto_underwater)
|
||||
p->MotoSpeed = 0;
|
||||
p->sync.fvel = 0;
|
||||
}
|
||||
|
||||
const auto oldMotoSpeed = clamp<float>((float)p->MotoSpeed, -15.f, 120.f) * (1.f / 40.f);
|
||||
bool forward = p->sync.fvel > 0;
|
||||
|
@ -1482,6 +1479,9 @@ static void onMotorcycle(int snum, ESyncBits &actions)
|
|||
bool turnLeft = p->sync.avel < 0;
|
||||
bool turnRight = p->sync.avel > 0;
|
||||
|
||||
if (p->MotoSpeed < 0)
|
||||
p->MotoSpeed = 0;
|
||||
|
||||
if ((braking = actions & SB_CROUCH))
|
||||
{
|
||||
actions &= ~SB_CROUCH;
|
||||
|
|
Loading…
Reference in a new issue