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

@@ -422,7 +422,7 @@ public:
bool FullPathToRelativePath( const char *path, char *out ) override
{
if( !COM_CheckString( path ))
if( COM_StringEmptyOrNULL( path ))
{
*out = 0;
return false;