- 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
|
|
@ -74,13 +74,13 @@ bool UseVanillaTransparency()
|
|||
if (firstTime)
|
||||
{
|
||||
int lastlump = 0;
|
||||
Wads.FindLump("ZSCRIPT", &lastlump); // ignore first ZScript
|
||||
if (Wads.FindLump("ZSCRIPT", &lastlump) == -1) // no loaded ZScript
|
||||
fileSystem.FindLump("ZSCRIPT", &lastlump); // ignore first ZScript
|
||||
if (fileSystem.FindLump("ZSCRIPT", &lastlump) == -1) // no loaded ZScript
|
||||
{
|
||||
lastlump = 0;
|
||||
foundDehacked = Wads.FindLump("DEHACKED", &lastlump) != -1;
|
||||
foundDehacked = fileSystem.FindLump("DEHACKED", &lastlump) != -1;
|
||||
lastlump = 0;
|
||||
foundDecorate = Wads.FindLump("DECORATE", &lastlump) != -1;
|
||||
foundDecorate = fileSystem.FindLump("DECORATE", &lastlump) != -1;
|
||||
foundZScript = false;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue