- 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:
Mitchell Richters 2023-03-19 21:35:14 +11:00
parent a9e606ca68
commit ba8f1069ab

View file

@ -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;