mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +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;
|
float timescale = 1.0;
|
||||||
|
|
||||||
if (cls.demoplayback) {
|
if (cls.demoplayback) {
|
||||||
timescale = max (0.001, cl_demospeed->value);
|
timescale = max (0, cl_demospeed->value);
|
||||||
time *= timescale;
|
time *= timescale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue