mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-14 20:56:56 +00:00
add source-sdk-2013
This commit is contained in:
@@ -66,7 +66,7 @@ public:
|
||||
CBoundedCvar_InterpRatio() :
|
||||
ConVar_ServerBounded( "cl_interp_ratio",
|
||||
"2.0",
|
||||
FCVAR_USERINFO | FCVAR_NOT_CONNECTED | FCVAR_ARCHIVE,
|
||||
FCVAR_USERINFO | FCVAR_NOT_CONNECTED,
|
||||
"Sets the interpolation amount (final amount is cl_interp_ratio / cl_updaterate)." )
|
||||
{
|
||||
}
|
||||
@@ -100,7 +100,7 @@ public:
|
||||
CBoundedCvar_Interp() :
|
||||
ConVar_ServerBounded( "cl_interp",
|
||||
"0.1",
|
||||
FCVAR_USERINFO | FCVAR_NOT_CONNECTED | FCVAR_ARCHIVE,
|
||||
FCVAR_USERINFO | FCVAR_NOT_CONNECTED,
|
||||
"Sets the interpolation amount (bounded on low side by server interp ratio settings).", true, 0.0f, true, 0.5f )
|
||||
{
|
||||
}
|
||||
@@ -133,7 +133,7 @@ float GetClientInterpAmount()
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( !HushAsserts() )
|
||||
if (!CommandLine()->FindParm("-hushasserts"))
|
||||
{
|
||||
AssertMsgOnce( false, "GetInterpolationAmount: can't get cl_updaterate cvar." );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user