Minor lyric quality tweak

This commit is contained in:
Glenn Maynard
2003-09-15 19:57:27 +00:00
parent 5bb8d842fc
commit db4c2f3cb3
+6
View File
@@ -105,10 +105,16 @@ void LyricDisplay::Update( float fDeltaTime )
}
m_textLyrics[i].SetDiffuse(color);
/* Crop the bottom layer of text away as we crop the top layer on. That
* prevents overdraw, which reduces AA quality. */
if( i==0 )
m_textLyrics[i].SetCropLeft(0);
if( i==1 )
m_textLyrics[i].SetCropRight(1);
m_textLyrics[i].Command(IN_COMMAND);
m_textLyrics[i].BeginTweening( fShowLength * 0.75f ); /* sleep */
if( i==0 )
m_textLyrics[i].SetCropLeft(1);
if( i==1 )
m_textLyrics[i].SetCropRight(0);
m_textLyrics[i].BeginTweening( fShowLength * 0.25f ); /* sleep */