From 2c09f397960ac10802cf558fc2f5030664d0c10c Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 18 Jun 2023 23:02:37 +0100 Subject: [PATCH] K_drawKartHUD: Draw laps if there's 0 laps, because that's more likely to be a testing environment --- 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 c0098b016..8fa17c725 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -5280,7 +5280,7 @@ void K_drawKartHUD(void) { if (gametyperules & GTR_CIRCUIT) { - if (numlaps > 1) + if (numlaps != 1) { K_drawKartLaps(); gametypeinfoshown = true;