Compiler Error Fixes

This commit is contained in:
Andrew Livy
2002-07-02 22:26:00 +00:00
parent 9ad0bd8111
commit 302aefa0f8
3 changed files with 10 additions and 22 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ void Course::LoadFromCRSFile( CString sPath, CArray<Song*,Song*> &apSongs )
continue; // skip this song
Notes* pNotes = NULL;
for( int i=0; i<pSong->m_arrayNotes.GetSize(); i++ )
for( i=0; i<pSong->m_arrayNotes.GetSize(); i++ )
if( 0 == stricmp(pSong->m_arrayNotes[i]->m_sDescription, sNotesDescription) )
pNotes = pSong->m_arrayNotes[i];