mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 15:31:03 +00:00
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:
parent
d6a3e1446f
commit
8199437e0d
1 changed files with 5 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue