From 98bf3a5a36d02c419dccc692601ba6ef872b1532 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Mon, 1 Sep 2025 08:33:49 -0400 Subject: [PATCH] Don't make default 20 Blue --- 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 cfb244c40..fd30096ed 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -2551,7 +2551,7 @@ static void K_drawRingMeter(void) ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_CRIMSON, GTC_CACHE); colorring = true; } - else if (ringcount >= 20) // (placeholder) over-ring + else if (ringcount > 20) // (placeholder) over-ring ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_BLUE, GTC_CACHE); else if (ringcount >= ringmax) // Maxed out ringmap = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_YELLOW, GTC_CACHE);