From 1491d68122ec97621e5550343ad6c79fbf0b2d3e Mon Sep 17 00:00:00 2001 From: Steel Titanium Date: Mon, 19 Aug 2019 22:10:52 -0400 Subject: [PATCH] Fix record attack foreground not appearing. I'm not sure why it suddenly broke when the same condition worked before. --- src/m_menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/m_menu.c b/src/m_menu.c index aaae35240..88ed6d571 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -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();