- add support for the (as of now) newest version of the Unity re-releases

This commit is contained in:
Rachael Alexanderson 2020-09-03 23:36:19 -04:00
commit 0204051381
6 changed files with 30 additions and 2 deletions

View file

@ -184,6 +184,13 @@ void FIWadManager::ParseIWadInfo(const char *fn, const char *data, int datasize,
if (sc.Number) iwad->flags |= GI_IGNORETITLEPATCHES;
else iwad->flags &= ~GI_IGNORETITLEPATCHES;
}
else if (sc.Compare("AlwaysCenterStatusBar"))
{
sc.MustGetStringName("=");
sc.MustGetNumber();
if (sc.Number) iwad->flags |= GI_ALWAYSCENTERSBAR;
else iwad->flags &= ~GI_ALWAYSCENTERSBAR;
}
else if (sc.Compare("Load"))
{
sc.MustGetStringName("=");