Removed some old comments

This commit is contained in:
Blixibon
2021-04-22 11:23:08 -05:00
parent c5ed394330
commit 4a07831c1a
3 changed files with 2 additions and 10 deletions

View File

@@ -166,7 +166,6 @@ inline bool FStrEq(const char *sz1, const char *sz2)
{
#ifdef MAPBASE
// V_stricmp() already checks if the pointers are equal, so having a comparison here is pointless.
// I had few reasons to do this, but maybe you'll thank me later.
return ( V_stricmp(sz1, sz2) == 0 );
#else
return ( sz1 == sz2 || V_stricmp(sz1, sz2) == 0 );