This commit is contained in:
Sally Coolatta 2022-09-18 09:13:08 -04:00
parent 4c89619ac4
commit 7aa29f80a9

View file

@ -8430,7 +8430,7 @@ INT16 K_UpdateSteeringValue(INT16 inputSteering, INT16 destSteering)
// player->steering is the turning value, but with easing applied.
// Keeps micro-turning from old easing, but isn't controller dependent.
const INT16 amount = KART_FULLTURN/4;
const INT16 amount = KART_FULLTURN/3;
INT16 diff = destSteering - inputSteering;
INT16 outputSteering = inputSteering;