Fix Q2 tickrate issue.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6219 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
6dbfc0ebbe
commit
7e67f46482
1 changed files with 1 additions and 5 deletions
|
@ -2561,11 +2561,7 @@ qboolean SV_Physics (void)
|
|||
break;
|
||||
}
|
||||
if (!host_frametime || (host_frametime < mintic && realtime))
|
||||
{
|
||||
// sv.time+=host_frametime;
|
||||
host_frametime = trueframetime;
|
||||
return false; //don't bother with the whole server thing for a bit longer
|
||||
}
|
||||
break;
|
||||
if (host_frametime > maxtic)
|
||||
host_frametime = maxtic;
|
||||
sv.world.physicstime += host_frametime;
|
||||
|
|
Loading…
Reference in a new issue