- renamed the file system related classes to actually use the term "FileSystem".

This commit is contained in:
Christoph Oelckers 2020-04-11 13:24:34 +02:00
commit 6bccde3b51
103 changed files with 647 additions and 647 deletions

View file

@ -314,7 +314,7 @@ void FParseContext::ParseLump(const char *lumpname)
const char *SavedSourceFile = SourceFile;
FParseToken token;
int lumpno = Wads.CheckNumForFullName(lumpname, true);
int lumpno = fileSystem.CheckNumForFullName(lumpname, true);
if (lumpno == -1)
{
@ -323,7 +323,7 @@ void FParseContext::ParseLump(const char *lumpname)
}
// Read the lump into a buffer and add a 0-terminator
auto lumpdata = Wads.ReadLumpIntoArray(lumpno, 1);
auto lumpdata = fileSystem.ReadLumpIntoArray(lumpno, 1);
SourceLine = 0;
SourceFile = lumpname;