From 5a5f9e12216d61f53eb65046f1411a03af74e59b Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 7 Dec 2003 08:24:23 +0000 Subject: [PATCH] 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 --- host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2