From 6691583ce996b0edf846360de8dc34cf4f3a270c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 6 Apr 2004 04:41:07 +0000 Subject: [PATCH] small output fix --- stepmania/src/ProfileHtml.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ProfileHtml.cpp b/stepmania/src/ProfileHtml.cpp index a503685ac1..6b20212f38 100644 --- a/stepmania/src/ProfileHtml.cpp +++ b/stepmania/src/ProfileHtml.cpp @@ -779,7 +779,7 @@ bool PrintInventoryForSong( RageFile &f, const Profile *pProfile, Song* pSong ) TABLE_LINE2( "BPM", sBPM ); TABLE_LINE2( "Credit", pSong->m_sCredit ); TABLE_LINE2( "MusicLength", SecondsToMMSSMsMs(pSong->m_fMusicLengthSeconds) ); - TABLE_LINE2( "Lyrics", !pSong->m_sLyricsFile.empty() ); + TABLE_LINE2( "Lyrics", pSong->HasLyrics() ); TABLE_LINE2( "NumTimesPlayed", pProfile->GetSongNumTimesPlayed(pSong) ); END_TABLE;