mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
- Duke/RR: Fix vehicle controller sign that got lost along the way.
* Issue from 9d74a5c60b
.
This commit is contained in:
parent
ebd8ab985e
commit
c6f6cf5933
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue