From: havoc Date: Sun, 7 Dec 2003 08:24:23 +0000 (+0000) Subject: no longer throttles back framerate when console is active, now only when app is not... X-Git-Tag: xonotic-v0.1.0preview~6239 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=5a5f9e12216d61f53eb65046f1411a03af74e59b;p=xonotic%2Fdarkplaces.git no longer throttles back framerate when console is active, now only when app is not the focus git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3691 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index a50b1430..5ceb705d 100644 --- a/host.c +++ b/host.c @@ -569,7 +569,7 @@ qboolean Host_FilterTime (double time) timecap = sys_ticrate.value; if (cl_avidemo.value >= 0.1f) timecap = 1.0 / (double)cl_avidemo.value; - else if (vid_activewindow && !scr_con_current) + else if (vid_activewindow) timecap = 1.0 / host_maxfps.value; timeleft = oldrealtime + timecap - realtime;