From 14ee70624f1834d9017fdec681e43cacb2775095 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Sat, 25 Dec 2021 05:51:09 -0500 Subject: [PATCH] Fix lap animation interp being reversed --- src/k_hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud.c b/src/k_hud.c index 2490139c2..ae6124a75 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -3944,7 +3944,7 @@ static void K_drawLapStartAnim(void) const UINT8 t = stplyr->karthud[khud_lapanimation]; const UINT8 progress = 80 - t; - const UINT8 tOld = t - 1; + const UINT8 tOld = t + 1; const UINT8 progressOld = 80 - tOld; const tic_t leveltimeOld = leveltime - 1;