fixed InsertIntelligentTaps inserting notes that are too close together (runs of 16ths in the same track in Cartoon Heroes heavy + big)

fixed small editor issues
This commit is contained in:
Chris Danford
2003-02-20 21:50:01 +00:00
parent d9ad14bbaf
commit dc2f57d587
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1075,7 +1075,7 @@ void NoteDataUtil::InsertIntelligentTaps( NoteData &in, float fBeatInterval )
// don't insert a new note if there's already one within this interval
bool bNoteInMiddle = false;
for( int j=iRowEarlier+1; j<=iRowLater-1; j++ )
if( !in.IsRowEmpty(iRowMiddle) )
if( !in.IsRowEmpty(j) )
{
bNoteInMiddle = true;
break;