If only people wouldn't use MSVC6... oh well.

This commit is contained in:
Ben Anderson
2003-11-07 23:28:26 +00:00
parent 3b46aa8857
commit bdb280256e
+2 -1
View File
@@ -779,7 +779,8 @@ void NoteDataUtil::ConvertTapsToHolds( NoteData &in, int iSimultaneousHolds, flo
{ {
// search for row of next TAP_TAP // search for row of next TAP_TAP
int iTapsLeft = iSimultaneousHolds; int iTapsLeft = iSimultaneousHolds;
for( int r2=r+1; r2<=last_row; r2++ ) int r2;
for( r2=r+1; r2<=last_row; r2++ )
{ {
if( in.IsThereATapAtRow(r2) ) if( in.IsThereATapAtRow(r2) )
{ {