mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
5.2 time and fps in demo output, for both nq and qw.
This commit is contained in:
parent
922895ed99
commit
450dd9f504
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue