K_drawKartHUD: Draw laps if there's 0 laps, because that's more likely to be a testing environment

This commit is contained in:
toaster 2023-06-18 23:02:37 +01:00
parent 08b471c9b2
commit 2c09f39796

View file

@ -5280,7 +5280,7 @@ void K_drawKartHUD(void)
{
if (gametyperules & GTR_CIRCUIT)
{
if (numlaps > 1)
if (numlaps != 1)
{
K_drawKartLaps();
gametypeinfoshown = true;