remove PadTapNotes
This commit is contained in:
@@ -687,11 +687,6 @@ void NoteData::LoadTransformed( const NoteData& original, int iNewNumTracks, con
|
||||
Convert4sToHoldNotes();
|
||||
}
|
||||
|
||||
void NoteData::PadTapNotes( int rows )
|
||||
{
|
||||
// Nothing to do for a track map.
|
||||
}
|
||||
|
||||
void NoteData::MoveTapNoteTrack( int dest, int src )
|
||||
{
|
||||
if(dest == src) return;
|
||||
@@ -719,7 +714,6 @@ void NoteData::SetTapNote( int track, int row, const TapNote& t )
|
||||
}
|
||||
else
|
||||
{
|
||||
PadTapNotes(row);
|
||||
m_TapNotes[track][row] = t;
|
||||
}
|
||||
}
|
||||
@@ -733,8 +727,6 @@ void NoteData::EliminateAllButOneTap( int row )
|
||||
{
|
||||
if(row < 0) return;
|
||||
|
||||
PadTapNotes(row);
|
||||
|
||||
int track;
|
||||
for(track = 0; track < GetNumTracks(); ++track)
|
||||
{
|
||||
|
||||
@@ -26,9 +26,6 @@ class NoteData
|
||||
|
||||
vector<HoldNote> m_HoldNotes;
|
||||
|
||||
/* Pad m_TapNotes so it includes the row "rows". */
|
||||
void PadTapNotes(int rows);
|
||||
|
||||
public:
|
||||
|
||||
/* Set up to hold the data in From; same number of tracks, same
|
||||
|
||||
Reference in New Issue
Block a user