From: havoc Date: Thu, 24 Jan 2008 02:44:57 +0000 (+0000) Subject: changed timedemo one-second stats to sync to cl.time (which comes from X-Git-Tag: xonotic-v0.1.0preview~2508 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e3226167dcbebd5838002e432c8052c6fdc005cb;p=xonotic%2Fdarkplaces.git changed timedemo one-second stats to sync to cl.time (which comes from the demo) rather than realtime, so now they should be more consistent git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8004 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_demo.c b/cl_demo.c index a375bbf0..9d8e4a00 100644 --- a/cl_demo.c +++ b/cl_demo.c @@ -154,14 +154,14 @@ void CL_ReadDemoMessage(void) if (cls.td_frames == 0) { cls.td_starttime = realtime; - cls.td_onesecondnexttime = realtime + 1; + cls.td_onesecondnexttime = cl.time + 1; cls.td_onesecondframes = 0; cls.td_onesecondminframes = 0; cls.td_onesecondmaxframes = 0; cls.td_onesecondavgframes = 0; cls.td_onesecondavgcount = 0; } - if (realtime >= cls.td_onesecondnexttime) + if (cl.time >= cls.td_onesecondnexttime) { if (cls.td_onesecondavgcount == 0) {