Removed an unneeded check now that realtime = 0 in sv_init.c while map is

loading went byebye.

Tim McGrath (Misty)
This commit is contained in:
Timothy C. McGrath 2002-06-03 23:11:09 +00:00
parent 4039452297
commit 6ead7c9ad4

View file

@ -1887,7 +1887,7 @@ SV_Frame (float time)
// don't bother running a frame if sys_ticrate seconds haven't passed
sv_frametime = realtime - old_time;
if ((sv_frametime >= sv_mintic->value) || (sv_frametime < 0)) {
if (sv_frametime >= sv_mintic->value) {
if (sv_frametime > sv_maxtic->value) {
sv_frametime = sv_maxtic->value;
}