- add support for the (as of now) newest version of the Unity re-releases
This commit is contained in:
parent
e740e00e07
commit
0204051381
6 changed files with 30 additions and 2 deletions
|
|
@ -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("=");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue