- 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:
Randy Heit 2012-05-26 00:55:27 +00:00
parent 4753be45fc
commit 23acb77030
1 changed files with 1 additions and 0 deletions

View File

@ -672,6 +672,7 @@ bool DHUDMessageTypeOnFadeOut::Tick ()
CurrLine++;
if (CurrLine >= NumLines)
{
Tics = 0;
State = 1;
}
else