From 834cb3430634d80f68b59d615f3631d99ae87034 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 8 May 2005 05:56:03 +0000 Subject: [PATCH] increased default cl_maxfps (it's still capped by server and stuff. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@992 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/client/cl_main.c b/engine/client/cl_main.c index 684144ad..0bc307cf 100644 --- a/engine/client/cl_main.c +++ b/engine/client/cl_main.c @@ -50,7 +50,7 @@ cvar_t cl_shownet = {"cl_shownet","0"}; // can be 0, 1, or 2 cvar_t cl_sbar = {"cl_sbar", "0", NULL, CVAR_ARCHIVE}; cvar_t cl_hudswap = {"cl_hudswap", "0", NULL, CVAR_ARCHIVE}; -cvar_t cl_maxfps = {"cl_maxfps", "-1", NULL, CVAR_ARCHIVE}; +cvar_t cl_maxfps = {"cl_maxfps", "1000", NULL, CVAR_ARCHIVE}; cvar_t cl_nopext = {"cl_nopext", "0", NULL, CVAR_ARCHIVE}; cvar_t cl_nolerp = {"cl_nolerp", "1"}; @@ -2694,13 +2694,13 @@ void Host_Frame (float time) cls.framecount++; + RSpeedRemark(); + #ifdef NQPROT NET_Poll(); #endif - RSpeedRemark(); - CL_UseIndepPhysics(!!cl_indepphysics.value); CL_AllowIndependantSendCmd(false); @@ -2736,13 +2736,13 @@ void Host_Frame (float time) } } + TP_CheckVars(); RSpeedEnd(RSPEED_PROTOCOL); // update video if (host_speeds.value) time1 = Sys_DoubleTime (); - TP_CheckVars(); if (SCR_UpdateScreen) { extern mleaf_t *r_viewleaf;