Add prompt for clearing an area in Edit Mode. Updated changelog.

This commit is contained in:
Kyzentun
2015-03-08 00:56:29 -07:00
parent 976f773f7c
commit d3367d6a16
10 changed files with 86 additions and 5 deletions
+15
View File
@@ -500,6 +500,21 @@ int NoteData::GetNumTapNotes( int iStartIndex, int iEndIndex ) const
return iNumNotes;
}
int NoteData::GetNumTapNotesNoTiming( int iStartIndex, int iEndIndex ) const
{
int iNumNotes = 0;
for( int t=0; t<GetNumTracks(); t++ )
{
FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE( *this, t, r, iStartIndex, iEndIndex )
{
if(GetTapNote(t, r).type != TapNoteType_Empty)
{ iNumNotes++; }
}
}
return iNumNotes;
}
int NoteData::GetNumTapNotesInRow( int iRow ) const
{
int iNumNotes = 0;