mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +00:00
- Fixed: When DHUDMessageTypeOnFadeOut stops typing, it should reset Tics so that
DHUDMessageFadeOut::Tick() starts counting from the time the last line was fully displayed, not from the time its first character was displayed. SVN r3665 (trunk)
This commit is contained in:
parent
4753be45fc
commit
23acb77030
1 changed files with 1 additions and 0 deletions
|
@ -672,6 +672,7 @@ bool DHUDMessageTypeOnFadeOut::Tick ()
|
|||
CurrLine++;
|
||||
if (CurrLine >= NumLines)
|
||||
{
|
||||
Tics = 0;
|
||||
State = 1;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue