- 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

@ -160,10 +160,10 @@ void D_LoadWadSettings ()
KeySections.Clear();
KeyConfWeapons.Clear();
while ((lump = Wads.FindLump ("KEYCONF", &lastlump)) != -1)
while ((lump = fileSystem.FindLump ("KEYCONF", &lastlump)) != -1)
{
FMemLump data = Wads.ReadLump (lump);
const char *eof = (char *)data.GetMem() + Wads.LumpLength (lump);
FMemLump data = fileSystem.ReadLump (lump);
const char *eof = (char *)data.GetMem() + fileSystem.LumpLength (lump);
const char *conf = (char *)data.GetMem();
while (conf < eof)