add missing check for embedded WADs.

This commit is contained in:
Christoph Oelckers 2023-12-16 07:41:22 +01:00
commit 7ce63abe6c
2 changed files with 30 additions and 13 deletions

View file

@ -308,8 +308,10 @@ FIWadManager::FIWadManager(const char *firstfn, const char *optfn)
std::vector<std::string> fns;
fns.push_back(firstfn);
if (optfn) fns.push_back(optfn);
FileSys::LumpFilterInfo lfi;
GetReserved(lfi);
if (check.InitMultipleFiles(fns, nullptr, nullptr))
if (check.InitMultipleFiles(fns, &lfi, nullptr))
{
int num = check.CheckNumForName("IWADINFO");
if (num >= 0)