From 997b6bb9d39af282c1fb3502afa32f281af68301 Mon Sep 17 00:00:00 2001 From: Steel Titanium Date: Tue, 20 Aug 2019 00:15:35 -0400 Subject: [PATCH] Draw record attack foreground even if a message is currently on-screen. --- src/m_menu.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/m_menu.c b/src/m_menu.c index 1714e53a8..986ae1f03 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -5565,11 +5565,8 @@ static void M_DrawMessageMenu(void) else { F_SkyScroll(curbgxspeed, curbgyspeed, curbgname); - // Draw and animate foreground here, if desired. - // Check if (curbgname == "RECATKBG"), and if true, - // call the M_DrawRecordAttackForeground function. - // String check generally done with a strncmp. - // Can also draw the clock here. + if (!strncmp("RECATKBG", curbgname, 8)) + M_DrawRecordAttackForeground(); } } if (curfadevalue)