Fix compile

This commit is contained in:
Steve Checkoway
2008-02-19 18:42:53 +00:00
parent efeaafebee
commit 4c7c459c51
+2 -1
View File
@@ -529,7 +529,8 @@ void MusicWheel::BuildWheelItemDatas( vector<MusicWheelItemData *> &arrayWheelIt
int iSectionCount = 0; int iSectionCount = 0;
// Count songs in this section // Count songs in this section
for( unsigned j=i; j < arraySongs.size(); j++ ) unsigned j;
for( j=i; j < arraySongs.size(); j++ )
{ {
if( SongUtil::GetSectionNameFromSongAndSort( arraySongs[j], so ) != sThisSection ) if( SongUtil::GetSectionNameFromSongAndSort( arraySongs[j], so ) != sThisSection )
break; break;