TapSteps -> TapNotes

This commit is contained in:
Chris Danford
2004-05-24 04:17:19 +00:00
parent b3125ac086
commit 0ec2a536d9
6 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -88,7 +88,7 @@ void NoteData::CopyRange( const NoteData* pFrom, int iFromIndexBegin, int iFromI
From.To4s( *pFrom );
To.To4s( *this );
// copy recorded TapSteps
// copy recorded TapNotes
int f = iFromIndexBegin, t = iToIndexBegin;
while( f<=iFromIndexEnd )
@@ -271,7 +271,7 @@ void NoteData::AddHoldNote( HoldNote add )
int iAddStartIndex = add.iStartRow;
int iAddEndIndex = add.iEndRow;
// delete TapSteps under this HoldNote
// delete TapNotes under this HoldNote
for( i=iAddStartIndex+1; i<=iAddEndIndex; i++ )
SetTapNote(add.iTrack, i, TAP_EMPTY);
@@ -345,7 +345,7 @@ void NoteData::PruneUnusedAttacksFromMap()
}
// Remove all items from m_AttackMap that don't have corresponding
// TapSteps in use.
// TapNotes in use.
for( TapNote tn = TAP_ATTACK_BEGIN; tn<=TAP_ATTACK_END; tn++ )
{
bool bInAttackMap = m_AttackMap.find(tn) != m_AttackMap.end();