Skip to content

Commit

Permalink
Lower default value of ex_interp
Browse files Browse the repository at this point in the history
  • Loading branch information
a1batross committed Mar 31, 2017
1 parent 03b3f5e commit 7e66eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/client/cl_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ void CL_InitLocal( void )
cl_nodelta = Cvar_Get ("cl_nodelta", "0", 0, "disable delta-compression for usercommands" );
cl_idealpitchscale = Cvar_Get( "cl_idealpitchscale", "0.8", 0, "how much to look up/down slopes and stairs when not using freelook" );
cl_solid_players = Cvar_Get( "cl_solid_players", "1", 0, "make all players non-solid (can't traceline them)" );
cl_interp = Cvar_Get( "ex_interp", "0.1", 0, "interpolate object positions starting this many seconds in past" );
cl_interp = Cvar_Get( "ex_interp", "0.01", 0, "interpolate object positions starting this many seconds in past" );
//Cvar_Get( "ex_maxerrordistance", "0", 0, "" );
cl_allow_fragment = Cvar_Get( "cl_allow_fragment", "0", CVAR_ARCHIVE, "allow downloading files directly from game server" );
cl_timeout = Cvar_Get( "cl_timeout", "60", 0, "connect timeout (in seconds)" );
Expand Down

0 comments on commit 7e66eef

Please sign in to comment.