s/RAGE_ASSERT/ASSERT/

This commit is contained in:
Steve Checkoway
2004-06-16 00:38:31 +00:00
parent 91e3269798
commit a613d4d9fa
20 changed files with 44 additions and 44 deletions
+2 -2
View File
@@ -154,8 +154,8 @@ bool FilenameDB::ResolvePath(CString &path)
fs = GetFileSet( ret );
CString p = path.substr( begin, size );
RAGE_ASSERT_M( p.size() != 1 || p[0] != '.', path ); // no .
RAGE_ASSERT_M( p.size() != 2 || p[0] != '.' || p[1] != '.', path ); // no ..
ASSERT_M( p.size() != 1 || p[0] != '.', path ); // no .
ASSERT_M( p.size() != 2 || p[0] != '.' || p[1] != '.', path ); // no ..
set<File>::iterator it = fs->files.find( File(p) );
/* If there were no matches, the path isn't found. */