From 687163948309c2a3adf06d04f0f3b5f22309ab8c Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Fri, 7 Apr 2023 23:47:30 -0700 Subject: [PATCH] Don't disable easing on driftend, it wasn't actually doing anything --- src/p_user.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/p_user.c b/src/p_user.c index 240935fa0..6e3d671e8 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -2207,14 +2207,6 @@ static void P_UpdatePlayerAngle(player_t *player) // With a full slam on the analog stick, how far could we steer in either direction? INT16 steeringRight = K_UpdateSteeringValue(player->steering, KART_FULLTURN); INT16 steeringLeft = K_UpdateSteeringValue(player->steering, -KART_FULLTURN); - - // Let the player kick out strongly when releasing MTs. - if (player->pflags & PF_DRIFTEND && !(steeringRight == 0 && steeringLeft == 0)) - { - steeringRight = KART_FULLTURN; - steeringLeft = -KART_FULLTURN; - } - angle_t maxTurnRight = K_GetKartTurnValue(player, steeringRight) << TICCMD_REDUCE; angle_t maxTurnLeft = K_GetKartTurnValue(player, steeringLeft) << TICCMD_REDUCE;