Coming back to the branch, closing menu messages felt annoyingly unresponsive. Let's disable the flashing animation for now and just retain the slideaway.

This commit is contained in:
toaster 2023-06-23 13:39:08 +01:00
parent d6a3e1446f
commit 8199437e0d

View file

@ -148,11 +148,16 @@ void M_StopMessage(INT32 choice)
// Set the answer.
menumessage.answer = choice;
#if 1
// The below was cool, but it felt annoyingly unresponsive.
menumessage.closing = MENUMESSAGECLOSE+1;
#else
// Intended length of time.
menumessage.closing = (TICRATE/2);
// This weird operation is necessary so the text flash is consistently timed.
menumessage.closing |= ((2*MENUMESSAGECLOSE) - 1);
#endif
M_SetMenuDelay(pid);
}