From b349dd4dfc5c7fb925f16b9669fc7a2cff445fa8 Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Tue, 27 Aug 2024 20:17:27 -0700 Subject: [PATCH] Fix timer removal in menus --- src/k_hud.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index 5ad1752da..230ca70ad 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -2014,7 +2014,7 @@ void K_drawKartTimestamp(tic_t drawtime, INT32 TX, INT32 TY, INT32 splitflags, U // TIME_X = BASEVIDWIDTH-124; // 196 // TIME_Y = 6; // 6 - if (!(modeattacking) && !(gametyperules & GTR_TIMELIMIT)) + if (Playing() && !(modeattacking) && !(gametyperules & GTR_TIMELIMIT)) return; INT32 jitter = 0;