mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 12:10:48 +00:00
Physics bugfix.
This commit is contained in:
parent
e7f6930efa
commit
92f3e230af
1 changed files with 1 additions and 1 deletions
|
@ -1482,7 +1482,7 @@ Host_SimulationTime (float time)
|
|||
if (!cl_maxfps->int_val)
|
||||
return 0;
|
||||
|
||||
fps = max (1, cl_maxfps->value);
|
||||
fps = bound (1, cl_maxfps->value, 72);
|
||||
|
||||
timedifference = (timescale / fps) - (realtime - oldrealtime);
|
||||
|
||||
|
|
Loading…
Reference in a new issue