Don't make default 20 Blue

This commit is contained in:
NepDisk 2025-09-01 08:33:49 -04:00
parent cc8f816c75
commit 98bf3a5a36

View file

@ -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);