- put the entire filesystem code into a namespace and created some subdirectories.
This commit is contained in:
parent
94c9ee4593
commit
ebb71cebf1
108 changed files with 308 additions and 225 deletions
|
|
@ -1930,7 +1930,7 @@ void FBehaviorContainer::LoadDefaultModules ()
|
|||
FScanner sc(lump);
|
||||
while (sc.GetString())
|
||||
{
|
||||
int acslump = fileSystem.CheckNumForName (sc.String, ns_acslibrary);
|
||||
int acslump = fileSystem.CheckNumForName (sc.String, FileSys::ns_acslibrary);
|
||||
if (acslump >= 0)
|
||||
{
|
||||
LoadModule (acslump);
|
||||
|
|
@ -2567,7 +2567,7 @@ bool FBehavior::Init(FLevelLocals *Level, int lumpnum, FileReader * fr, int len,
|
|||
if (parse[i])
|
||||
{
|
||||
FBehavior *module = NULL;
|
||||
int lump = fileSystem.CheckNumForName (&parse[i], ns_acslibrary);
|
||||
int lump = fileSystem.CheckNumForName (&parse[i], FileSys::ns_acslibrary);
|
||||
if (lump < 0)
|
||||
{
|
||||
Printf (TEXTCOLOR_RED "Could not find ACS library %s.\n", &parse[i]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue