mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-21 19:32:30 +00:00
Whoops. Fix host_frametime min/max screwup. :)
This commit is contained in:
parent
5fe2d742d5
commit
c42c12ea84
1 changed files with 1 additions and 1 deletions
|
@ -1446,7 +1446,7 @@ SV_RunCmd (usercmd_t *ucmd, qboolean inside)
|
|||
V_CalcRoll (sv_player->v.angles, sv_player->v.velocity)*4;
|
||||
}
|
||||
|
||||
host_frametime = max(0.1, ucmd->msec * 0.001);
|
||||
host_frametime = min(0.1, ucmd->msec * 0.001);
|
||||
|
||||
if (!host_client->spectator) {
|
||||
pr_global_struct->frametime = host_frametime;
|
||||
|
|
Loading…
Reference in a new issue