mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-21 11:21:11 +00:00
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:
parent
5290f4c80b
commit
15b363773f
1 changed files with 2 additions and 2 deletions
|
@ -5135,7 +5135,7 @@ static void M_DrawLevelPlatterMenu(void)
|
||||||
V_DrawFadeScreen(0xFF00, curfadevalue);
|
V_DrawFadeScreen(0xFF00, curfadevalue);
|
||||||
|
|
||||||
// Draw and animate foreground
|
// Draw and animate foreground
|
||||||
if ((!curbghide || !titlemapinaction) && !stricmp("RECATTBG", curbgname))
|
if (!curbghide && stricmp("RECATTBG", curbgname) < 0)
|
||||||
M_DrawRecordAttackBackground();
|
M_DrawRecordAttackBackground();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8363,7 +8363,7 @@ void M_DrawTimeAttackMenu(void)
|
||||||
V_DrawFadeScreen(0xFF00, curfadevalue);
|
V_DrawFadeScreen(0xFF00, curfadevalue);
|
||||||
|
|
||||||
// Draw and animate foreground
|
// Draw and animate foreground
|
||||||
if ((!curbghide || !titlemapinaction) && !stricmp("RECATTBG", curbgname))
|
if (!curbghide && stricmp("RECATTBG", curbgname) < 0)
|
||||||
M_DrawRecordAttackBackground();
|
M_DrawRecordAttackBackground();
|
||||||
M_DrawMenuTitle();
|
M_DrawMenuTitle();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue