- Fixed missing resources in testing parameters.

- Fixed disappearing temp file in testing parameters when "Use short paths" is checked.
- Added option for resource to exclude them from the testing parameters (for example, you may want to exclude zdoom.pk3)
This commit is contained in:
codeimp 2009-07-02 14:15:47 +00:00
parent 13a47b93df
commit 582b01ee9d
8 changed files with 79 additions and 26 deletions

View file

@ -77,7 +77,7 @@ namespace CodeImp.DoomBuilder.Data
foreach(string w in wadfiles)
{
string tempfile = CreateTempFile(w);
DataLocation wdl = new DataLocation(DataLocation.RESOURCE_WAD, tempfile, false, false);
DataLocation wdl = new DataLocation(DataLocation.RESOURCE_WAD, tempfile, false, false, true);
wads.Add(new WADReader(wdl));
}
}