mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
got a little too agressive with that optimisation :P (I'm surprised it worked
at all)
This commit is contained in:
parent
0deb11eeae
commit
7ca3ea20b1
1 changed files with 3 additions and 3 deletions
|
@ -1448,9 +1448,6 @@ Host_SimulationTime (float time)
|
|||
float fps, timedifference;
|
||||
float timescale = 1.0;
|
||||
|
||||
if (cls.timedemo)
|
||||
return 0;
|
||||
|
||||
if (cls.demoplayback) {
|
||||
timescale = max (0, cl_demospeed->value);
|
||||
time *= timescale;
|
||||
|
@ -1460,6 +1457,9 @@ Host_SimulationTime (float time)
|
|||
if (oldrealtime > realtime)
|
||||
oldrealtime = 0;
|
||||
|
||||
if (cls.timedemo)
|
||||
return 0;
|
||||
|
||||
if (!cl_maxfps->int_val)
|
||||
return 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue