From 616d2bb87a51c6cfb594b693dd8cfeb87f4b2a48 Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 3 Mar 2024 00:22:22 +0000 Subject: [PATCH] Menu Messages only animate when menuwipe is stopped Reduces the amount of moving parts we have to worry about. Fire M_StartMessage at the same time you change a menu without worry! --- src/menus/transient/message-box.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/menus/transient/message-box.c b/src/menus/transient/message-box.c index 72bc50731..ad901ef11 100644 --- a/src/menus/transient/message-box.c +++ b/src/menus/transient/message-box.c @@ -116,6 +116,9 @@ void M_StopMessage(INT32 choice) boolean M_MenuMessageTick(void) { + if (menuwipe) + return false; + if (menumessage.closing) { if (menumessage.closing > MENUMESSAGECLOSE)