Skip to content
Snippets Groups Projects
Commit 7ca886b0 authored by MascaraSnake's avatar MascaraSnake
Browse files

Merge branch 'showfps-fix' into 'master'

Don't show the FPS counter during startup.

See merge request !930
parents 225095af 61dfee7e
No related branches found
No related tags found
2 merge requests!985Shaders next merge,!930Don't show the FPS counter during startup.
......@@ -526,6 +526,9 @@ void SCR_DisplayTicRate(void)
INT32 ticcntcolor = 0;
const INT32 h = vid.height-(8*vid.dupy);
if (gamestate == GS_NULL)
return;
for (i = lasttic + 1; i < TICRATE+lasttic && i < ontic; ++i)
fpsgraph[i % TICRATE] = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment