Fix lap animation interp being reversed

This commit is contained in:
Sally Coolatta 2021-12-25 05:51:09 -05:00 committed by SinnamonLat
parent 817e6f568a
commit 14ee70624f

View file

@ -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;