fix compile errors

This commit is contained in:
Chris Danford
2003-03-09 01:31:15 +00:00
parent 31aa613295
commit 769dac616f
6 changed files with 51 additions and 593 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ bool LyricsLoader::LoadFromLRCFile( CString sPath, Song &out )
if( !bResult )
RageException::Throw( "Error opening file '%s' for reading.", sPath.GetString() );
unsigned iLineCount = 0;
// unsigned iLineCount = 0; // hush "variable not referenced"
for( unsigned i=0; i<lrc.GetNumValues(); i++ )
{
int iNumParams = lrc.GetNumParams(i);
@@ -57,7 +57,7 @@ bool LyricsLoader::LoadFromLRCFile( CString sPath, Song &out )
sTempTime.Replace( ".", "" );
sTempTime.Replace( ":", "." );
float m_fStartTime = (float)atof(sTempTime);
// float m_fStartTime = (float)atof(sTempTime); // hush "variable not referenced"
CString m_sLyric = sValueData;
CString m_sStartTime = sValueName;
//--