more cleanups (lint lint lint)

This commit is contained in:
Glenn Maynard
2002-11-16 09:12:55 +00:00
parent 551f5adb16
commit 23254cdd4a
16 changed files with 46 additions and 41 deletions
+2 -1
View File
@@ -162,7 +162,8 @@ bool KSFLoader::LoadFromDir( CString sDir, Song &out )
throw RageException( "Couldn't find any KSF files in '%s'", sDir.GetString() );
// load the Notes from the rest of the KSF files
for( unsigned i=0; i<arrayKSFFileNames.size(); i++ )
unsigned i;
for( i=0; i<arrayKSFFileNames.size(); i++ )
{
Notes* pNewNotes = new Notes;
LoadFromKSFFile( out.m_sSongDir + arrayKSFFileNames[i], *pNewNotes );