reduce minimum timescale to 0 to allow pausing the demo

This commit is contained in:
Bill Currie 2001-02-08 00:08:32 +00:00
parent 145284c3ce
commit fdaf69b9ae
1 changed files with 1 additions and 1 deletions

View File

@ -1389,7 +1389,7 @@ Host_SimulationTime (float time)
float timescale = 1.0;
if (cls.demoplayback) {
timescale = max (0.001, cl_demospeed->value);
timescale = max (0, cl_demospeed->value);
time *= timescale;
}