- rename 'AlwaysCenterStatusBar' to 'FixUnityStatusBar', original name became a misnomer especially with updates that made it more specific in its use

This commit is contained in:
Rachael Alexanderson 2020-09-07 23:30:40 -04:00
commit b11298afd5
4 changed files with 10 additions and 10 deletions

View file

@ -184,12 +184,12 @@ 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"))
else if (sc.Compare("FixUnityStatusBar"))
{
sc.MustGetStringName("=");
sc.MustGetNumber();
if (sc.Number) iwad->flags |= GI_ALWAYSCENTERSBAR;
else iwad->flags &= ~GI_ALWAYSCENTERSBAR;
if (sc.Number) iwad->flags |= GI_FIXUNITYSBAR;
else iwad->flags &= ~GI_FIXUNITYSBAR;
}
else if (sc.Compare("Load"))
{