mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +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++;
|
CurrLine++;
|
||||||
if (CurrLine >= NumLines)
|
if (CurrLine >= NumLines)
|
||||||
{
|
{
|
||||||
|
Tics = 0;
|
||||||
State = 1;
|
State = 1;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue