- added a "DeleteLumps" list to IWADINFO
This is for IWADs that contain content which clashes with the engine and must be removed. The primary reason are the unimplemented characters in Raven's BigFont.
This commit is contained in:
parent
0200edd392
commit
b1ca746af3
4 changed files with 16 additions and 1 deletions
|
|
@ -155,6 +155,16 @@ void FIWadManager::ParseIWadInfo(const char *fn, const char *data, int datasize,
|
|||
}
|
||||
while (sc.CheckString(","));
|
||||
}
|
||||
else if (sc.Compare("DeleteLumps"))
|
||||
{
|
||||
sc.MustGetStringName("=");
|
||||
do
|
||||
{
|
||||
sc.MustGetString();
|
||||
iwad->DeleteLumps.Push(FString(sc.String));
|
||||
}
|
||||
while (sc.CheckString(","));
|
||||
}
|
||||
else if (sc.Compare("BannerColors"))
|
||||
{
|
||||
sc.MustGetStringName("=");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue