From 4c7c459c512d140229c60acf2db26561f85df173 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 19 Feb 2008 18:42:53 +0000 Subject: [PATCH] Fix compile --- stepmania/src/MusicWheel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index a2e57a1f53..9f9cc6006d 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -529,7 +529,8 @@ void MusicWheel::BuildWheelItemDatas( vector &arrayWheelIt int iSectionCount = 0; // 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 ) break;