From fa72309aa0a887cffc9b78680caace2c6dad76c6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 15 Sep 2003 07:28:55 +0000 Subject: [PATCH] Sleep fully uncropped lyrics for a while, so they don't disappear instantly after they stop tweening. --- stepmania/src/LyricDisplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/LyricDisplay.cpp b/stepmania/src/LyricDisplay.cpp index c71565eb4e..89c769a7b3 100644 --- a/stepmania/src/LyricDisplay.cpp +++ b/stepmania/src/LyricDisplay.cpp @@ -108,9 +108,10 @@ void LyricDisplay::Update( float fDeltaTime ) if( i==1 ) m_textLyrics[i].SetCropRight(1); m_textLyrics[i].Command(IN_COMMAND); - m_textLyrics[i].BeginTweening( fShowLength ); /* sleep */ + m_textLyrics[i].BeginTweening( fShowLength * 0.75f ); /* sleep */ if( i==1 ) m_textLyrics[i].SetCropRight(0); + m_textLyrics[i].BeginTweening( fShowLength * 0.25f ); /* sleep */ m_textLyrics[i].Command(OUT_COMMAND); }