From 3f2a074869ccbc5b7fee39aa2fe6d009cd274dff Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Wed, 1 Mar 2023 15:54:19 -0700 Subject: [PATCH] Remove debug print --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index 06c32494d..f232916af 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -2156,7 +2156,7 @@ static INT16 P_FindClosestTurningForAngle(player_t *player, INT32 targetAngle, I angle_t highError = abs(targetAngle - highAngle); angle_t newError = abs(targetAngle - newAngle); - CONS_Printf("steering %d / %d / %d - angle %d / %d / %d - TA %d - error %d / %d / %d\n", lowBound, newBound, highBound, lowAngle, newAngle, highAngle, targetAngle, lowError, newError, highError); + // CONS_Printf("steering %d / %d / %d - angle %d / %d / %d - TA %d - error %d / %d / %d\n", lowBound, newBound, highBound, lowAngle, newAngle, highAngle, targetAngle, lowError, newError, highError); // EXIT CONDITION 3: We got lucky! if (lowError == 0)