engine: remove unused ignore_group argument from Cvar_FindVarExt

This commit is contained in:
Alibek Omarov
2026-02-20 21:55:15 +05:00
parent 2f8a0510b8
commit e0f01ddae7
7 changed files with 13 additions and 13 deletions

View File

@@ -675,7 +675,7 @@ void R_ShowTextures( void )
time -= floor( time );
time_cubemap = gp_cl->time * 0.25f;
time_cubemap -= floor( time_cubemap );
time_cubemap *= 6.2831853f;
time_cubemap *= M_PI2_F;
SinCos( time_cubemap, &cbm_sin, &cbm_cos );
gEngfuncs.Con_DrawStringLen( NULL, NULL, &charHeight );

View File

@@ -3902,7 +3902,7 @@ static void pfnMod_LoadCacheFile( const char *path, struct cache_user_s *cu )
static cvar_t *pfnGetCvarPointer( const char *name )
{
return (cvar_t*)gEngfuncs.pfnGetCvarPointer( name, 0 );
return (cvar_t*)gEngfuncs.pfnGetCvarPointer( name );
}
static void *pfnMod_Calloc( int number, size_t size )
@@ -3979,7 +3979,7 @@ void CL_InitStudioAPI( void )
pStudioDraw = &gStudioDraw;
// trying to grab them from client.dll
cl_righthand = gEngfuncs.pfnGetCvarPointer( "cl_righthand", 0 );
cl_righthand = gEngfuncs.pfnGetCvarPointer( "cl_righthand" );
// Xash will be used internal StudioModelRenderer
if( gEngfuncs.pfnGetStudioModelInterface( STUDIO_INTERFACE_VERSION, &pStudioDraw, &gStudioAPI ))

View File

@@ -3527,7 +3527,7 @@ static void pfnMod_LoadCacheFile( const char *path, struct cache_user_s *cu )
static cvar_t *pfnGetCvarPointer( const char *name )
{
return (cvar_t *)gEngfuncs.pfnGetCvarPointer( name, 0 );
return (cvar_t *)gEngfuncs.pfnGetCvarPointer( name );
}
static void *pfnMod_Calloc( int number, size_t size )
@@ -3604,7 +3604,7 @@ void GAME_EXPORT CL_InitStudioAPI( void )
pStudioDraw = &gStudioDraw;
// trying to grab them from client.dll
cl_righthand = gEngfuncs.pfnGetCvarPointer( "cl_righthand", 0 );
cl_righthand = gEngfuncs.pfnGetCvarPointer( "cl_righthand" );
// Xash will be used internal StudioModelRenderer
if( gEngfuncs.pfnGetStudioModelInterface( STUDIO_INTERFACE_VERSION, &pStudioDraw, &gStudioAPI ))