got a little too agressive with that optimisation :P (I'm surprised it worked

at all)
This commit is contained in:
Bill Currie 2002-04-25 19:38:15 +00:00
parent 0deb11eeae
commit 7ca3ea20b1

View file

@ -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;