]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
no longer throttles back framerate when console is active, now only when app is not...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 7 Dec 2003 08:24:23 +0000 (08:24 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 7 Dec 2003 08:24:23 +0000 (08:24 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3691 d7cf8633-e32d-0410-b094-e92efae38249

host.c

diff --git a/host.c b/host.c
index a50b143067bc655f1d8a847fc92bc8e715790f57..5ceb705d55647385291fa05944731efd65dda2f5 100644 (file)
--- 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;