mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-15 11:12:20 +00:00
Fix min/max allowing for theoretical handling breakage in camera-sliptide logic
This commit is contained in:
parent
01813c91ba
commit
d870bf0416
1 changed files with 1 additions and 1 deletions
|
|
@ -2254,7 +2254,7 @@ static void P_UpdatePlayerAngle(player_t *player)
|
|||
}
|
||||
else
|
||||
{
|
||||
steeringLeft = min(steeringLeft, max(steeringRight, -1));
|
||||
steeringLeft = min(steeringLeft, min(steeringRight, -1));
|
||||
steeringRight = min(steeringLeft, -1);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue