filesystem: replace COM_CheckString and COM_CheckStringEmpty by COM_StringEmptyOrNULL and COM_StringEmpty

This commit is contained in:
Alibek Omarov
2026-02-21 00:06:02 +05:00
committed by a1batross
parent 76363a555c
commit baa005ff71
4 changed files with 40 additions and 40 deletions

View File

@@ -300,7 +300,7 @@ qboolean FS_FixFileCase( dir_t *dir, const char *path, char *dst, const size_t l
return false;
// nothing to fix
if( !COM_CheckStringEmpty( path ))
if( COM_StringEmpty( path ))
return true;
for( prev = path, next = Q_strchrnul( prev, '/' );