- Duke/RR: Fix vehicle controller sign that got lost along the way.

* Issue from 9d74a5c60b.
This commit is contained in:
Mitchell Richters 2023-03-19 22:45:02 +11:00
parent ebd8ab985e
commit c6f6cf5933

View file

@ -547,7 +547,7 @@ static float getVehicleTurnVel(player_struct* p, HIDInput* const hidInput, const
const bool noattenuate = (isTurboTurnTime() || hidLeft || hidRight) && (!p->OnMotorcycle || p->MotoSpeed > 0);
const auto vel = (noattenuate) ? (baseVel) : (baseVel * velScale);
turnvel = vel * hidInput->joyaxes[JOYAXIS_Yaw];
turnvel = vel * -hidInput->joyaxes[JOYAXIS_Yaw];
if (const auto kbdDir = kbdRight - kbdLeft)
{