Fix record attack foreground not appearing.

I'm not sure why it suddenly broke when the same condition worked before.
This commit is contained in:
Steel Titanium 2019-08-19 22:10:52 -04:00
parent 5290f4c80b
commit 15b363773f
No known key found for this signature in database
GPG key ID: 924BA411F18DFDBE

View file

@ -5135,7 +5135,7 @@ static void M_DrawLevelPlatterMenu(void)
V_DrawFadeScreen(0xFF00, curfadevalue);
// Draw and animate foreground
if ((!curbghide || !titlemapinaction) && !stricmp("RECATTBG", curbgname))
if (!curbghide && stricmp("RECATTBG", curbgname) < 0)
M_DrawRecordAttackBackground();
}
@ -8363,7 +8363,7 @@ void M_DrawTimeAttackMenu(void)
V_DrawFadeScreen(0xFF00, curfadevalue);
// Draw and animate foreground
if ((!curbghide || !titlemapinaction) && !stricmp("RECATTBG", curbgname))
if (!curbghide && stricmp("RECATTBG", curbgname) < 0)
M_DrawRecordAttackBackground();
M_DrawMenuTitle();