mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- fixed bad variable name for lump filter
This commit is contained in:
parent
be8009d9ca
commit
2ae3f6d326
1 changed files with 2 additions and 2 deletions
|
@ -413,9 +413,9 @@ void FResourceFile::PostProcessArchive(void *lumps, size_t lumpsize)
|
|||
long len;
|
||||
int lastpos = -1;
|
||||
FString file;
|
||||
if (LumpFilter.IndexOf('.') < 0)
|
||||
if (LumpFilterIWAD.IndexOf('.') < 0)
|
||||
{
|
||||
max -= FilterLumps(LumpFilter, lumps, lumpsize, max);
|
||||
max -= FilterLumps(LumpFilterIWAD, lumps, lumpsize, max);
|
||||
}
|
||||
else while ((len = LumpFilterIWAD.IndexOf('.', lastpos+1)) > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue