Fix Typo in Comment

This commit is contained in:
Ricardo Luís Vaz Silva 2023-02-22 13:26:49 -03:00 committed by Christoph Oelckers
parent 766c61b3ed
commit 87fcaab512
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ static FString ResolveIncludePath(const FString &path,const FString &lumpname){
auto end = lumpname.LastIndexOf("/"); // find last '/'
// it's a top-level file, if it's a folder being loaded ( /xxx/yyy/:whatever.zs ) end is before than start, or if it's a zip ( xxx.zip/whatever.zs ) end would be -1
// it's a top-level file, if it's a folder being loaded ( /xxx/yyy/:whatever.zs ) end is before than start, or if it's a zip ( xxx.zip:whatever.zs ) end would be -1
bool topLevelFile = start > end ;
FString fullPath = topLevelFile ? FString {} : lumpname.Mid(start + 1, end - start - 1); // get path from lumpname (format 'wad:filepath/filename')