- added initial support for a GAMEINFO lump in PWADs. When the game is started

all files loaded with '-file' are scanned for this lump. This lump is read
  before any WAD initialization takes place, in particular the IWAD is not yet
  loaded at this time. This allows PWADs the option to specify an IWAD they 
  want to run with and optionally autoload external resource WADs.
- Fixed a few places where FixPathSeperator was called with a locked FString buffer.
  It's better to use the FString version of this function instead.


SVN r2073 (trunk)
This commit is contained in:
Christoph Oelckers 2010-01-01 15:31:00 +00:00
commit 90ea0c3f6f
6 changed files with 145 additions and 20 deletions

View file

@ -283,9 +283,9 @@ FResourceFile *FResourceFile::OpenResourceFile(const char *filename, FileReader
return NULL;
}
FResourceFile *FResourceFile::OpenDirectory(const char *filename)
FResourceFile *FResourceFile::OpenDirectory(const char *filename, bool quiet)
{
return CheckDir(filename, NULL, false);
return CheckDir(filename, NULL, quiet);
}
//==========================================================================