mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-01-22 16:01:25 +00:00
reduce minimum timescale to 0 to allow pausing the demo
This commit is contained in:
parent
145284c3ce
commit
fdaf69b9ae
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue