SCR_DisplayTicRate: do not say "FPS"

Obscurs less of the position number in splitscreen.
This commit is contained in:
James R. 2023-10-01 00:49:01 -07:00 committed by James R
parent a11e8d793a
commit dd1b0255f8

View file

@ -535,9 +535,6 @@ void SCR_DisplayTicRate(void)
INT32 x = 318;
double fps = round(averageFPS);
// draw "FPS"
V_DrawFixedPatch(306<<FRACBITS, 183<<FRACBITS, FRACUNIT, V_SNAPTOBOTTOM|V_SNAPTORIGHT, framecounter, R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_YELLOW, GTC_CACHE));
if (fps > (benchmark * 0.9))
ticcntcolor = R_GetTranslationColormap(TC_RAINBOW, SKINCOLOR_MINT, GTC_CACHE);
else if (fps < (benchmark * 0.5))