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
This commit is contained in:
parent
dd3dd3de50
commit
834cb34306
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue