- renamed the file system related classes to actually use the term "FileSystem".
This commit is contained in:
parent
83befa7686
commit
6bccde3b51
103 changed files with 647 additions and 647 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue