From 5c1739f579c1423835ec99cb2422c0dd6f10e1e1 Mon Sep 17 00:00:00 2001 From: chromaticpipe2 <chromaticpipe@gmail.com> Date: Thu, 20 Mar 2025 17:11:32 -0500 Subject: [PATCH] Change TPS counter to use V_SKYMAP --- src/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.c b/src/screen.c index 5f273cd55e..b996c93a8a 100644 --- a/src/screen.c +++ b/src/screen.c @@ -574,7 +574,7 @@ void SCR_DisplayTicRate(void) ++totaltics; if (totaltics <= TICRATE/2) ticcntcolor = V_REDMAP; - else if (totaltics >= TICRATE) ticcntcolor = V_BLUEMAP; + else if (totaltics >= TICRATE) ticcntcolor = V_SKYMAP; if (cv_fpscounter.value == 2) // compact counter { -- GitLab