All lumps with the "SOC_" prefix in their names are now read as SOCs.

This commit is contained in:
Monster Iestyn 2016-01-17 19:43:26 +00:00
parent 6fd3036112
commit af3c4755dc
1 changed files with 10 additions and 0 deletions

View File

@ -147,6 +147,16 @@ static inline void W_LoadDehackedLumps(UINT16 wadnum)
}
#endif
{
lumpinfo_t *lump_p = wadfiles[wadnum]->lumpinfo;
for (lump = 0; lump < wadfiles[wadnum]->numlumps; lump++, lump_p++)
if (memcmp(lump_p->name,"SOC_",4)==0)
{
CONS_Printf(M_GetText("Loading SOC from %s\n"), wadfiles[wadnum]->filename);
DEH_LoadDehackedLumpPwad(wadnum, lump);
}
}
// Check for MAINCFG
for (lump = 0;lump != INT16_MAX;lump++)
{