mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +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.
|
// Set the answer.
|
||||||
menumessage.answer = choice;
|
menumessage.answer = choice;
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
// The below was cool, but it felt annoyingly unresponsive.
|
||||||
|
menumessage.closing = MENUMESSAGECLOSE+1;
|
||||||
|
#else
|
||||||
// Intended length of time.
|
// Intended length of time.
|
||||||
menumessage.closing = (TICRATE/2);
|
menumessage.closing = (TICRATE/2);
|
||||||
|
|
||||||
// This weird operation is necessary so the text flash is consistently timed.
|
// This weird operation is necessary so the text flash is consistently timed.
|
||||||
menumessage.closing |= ((2*MENUMESSAGECLOSE) - 1);
|
menumessage.closing |= ((2*MENUMESSAGECLOSE) - 1);
|
||||||
|
#endif
|
||||||
|
|
||||||
M_SetMenuDelay(pid);
|
M_SetMenuDelay(pid);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue