mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +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;
|
long len;
|
||||||
int lastpos = -1;
|
int lastpos = -1;
|
||||||
FString file;
|
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)
|
else while ((len = LumpFilterIWAD.IndexOf('.', lastpos+1)) > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue