From 23acb770305fa7b54e52229bc50fd0bcfa4e0f94 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 26 May 2012 00:55:27 +0000 Subject: [PATCH] - 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) --- src/g_shared/hudmessages.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/g_shared/hudmessages.cpp b/src/g_shared/hudmessages.cpp index b72acd9b8c..22e12ead19 100644 --- a/src/g_shared/hudmessages.cpp +++ b/src/g_shared/hudmessages.cpp @@ -672,6 +672,7 @@ bool DHUDMessageTypeOnFadeOut::Tick () CurrLine++; if (CurrLine >= NumLines) { + Tics = 0; State = 1; } else