5.2 time and fps in demo output, for both nq and qw.

This commit is contained in:
Ragnvald Maartmann-Moe IV 2001-10-02 19:43:25 +00:00
parent 922895ed99
commit 450dd9f504
2 changed files with 2 additions and 2 deletions

View file

@ -338,7 +338,7 @@ CL_FinishTimeDemo (void)
time = realtime - cls.td_starttime;
if (!time)
time = 1;
Con_Printf ("%i frames %5.1f seconds %5.1f fps\n", frames, time,
Con_Printf ("%i frames %5.2f seconds %5.2f fps\n", frames, time,
frames / time);
}

View file

@ -770,7 +770,7 @@ CL_FinishTimeDemo (void)
time = Sys_DoubleTime () - cls.td_starttime;
if (!time)
time = 1;
Con_Printf ("%i frames %5.1f seconds %5.2f fps\n", frames, time,
Con_Printf ("%i frames %5.2f seconds %5.2f fps\n", frames, time,
frames / time);
CL_TimeFrames_DumpLog();