Added ability to show/hide lyrics in APPEARANCE OPTIONS menu

This commit is contained in:
Kevin Slaughter
2003-03-20 10:59:09 +00:00
parent 232b220423
commit 57d3d403a5
5 changed files with 17 additions and 4 deletions
+6 -3
View File
@@ -658,10 +658,13 @@ void ScreenGameplay::LoadNextSong()
// Load lyrics
// XXX: don't load this here
LyricsLoader LL;
if( GAMESTATE->m_pCurSong->HasLyrics() )
if( PREFSMAN->m_bShowLyrics == true )
{
LL.LoadFromLRCFile(GAMESTATE->m_pCurSong->GetLyricsPath(), *GAMESTATE->m_pCurSong);
LyricsLoader LL;
if( GAMESTATE->m_pCurSong->HasLyrics() )
{
LL.LoadFromLRCFile(GAMESTATE->m_pCurSong->GetLyricsPath(), *GAMESTATE->m_pCurSong);
}
}
}