From b1eb3ee78b1306b544b8d2374dcd4567e70c49ed Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 1 Nov 2003 19:36:30 +0000 Subject: [PATCH] fix lyrics at non 1x music rates --- stepmania/src/LyricDisplay.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/src/LyricDisplay.cpp b/stepmania/src/LyricDisplay.cpp index d0c5fd4a7a..3b72a41af4 100644 --- a/stepmania/src/LyricDisplay.cpp +++ b/stepmania/src/LyricDisplay.cpp @@ -80,6 +80,9 @@ void LyricDisplay::Update( float fDeltaTime ) * skip it. */ fShowLength = max(fShowLength, 0); + // make lyrics show faster a larger song rates. + fShowLength /= GAMESTATE->m_SongOptions.m_fMusicRate; + for( int i=0; i<2; i++ ) { m_textLyrics[i].SetText( GAMESTATE->m_pCurSong->m_LyricSegments[m_iCurLyricNumber].m_sLyric );