ref: replace COM_CheckString and COM_CheckStringEmpty by COM_StringEmptyOrNULL and COM_StringEmpty

This commit is contained in:
Alibek Omarov
2026-02-21 00:06:12 +05:00
committed by a1batross
parent baa005ff71
commit 4722ad6be6
2 changed files with 2 additions and 2 deletions

View File

@@ -1284,7 +1284,7 @@ static qboolean GL_CheckTexName( const char *name )
{
int len;
if( !COM_CheckString( name ))
if( COM_StringEmptyOrNULL( name ))
return false;
len = Q_strlen( name );

View File

@@ -640,7 +640,7 @@ static qboolean GL_CheckTexName( const char *name )
{
int len;
if( !COM_CheckString( name ))
if( COM_StringEmptyOrNULL( name ))
return false;
len = Q_strlen( name );