remove hard-coded track limit in NoteData

This commit is contained in:
Chris Danford
2004-09-25 07:59:56 +00:00
parent b1d8b2a51e
commit 3e140b0af9
4 changed files with 71 additions and 69 deletions
+4 -3
View File
@@ -11,9 +11,10 @@
class NoteData
{
/* Keep this aligned, so that they all have the same size. */
vector<TapNote> m_TapNotes[MAX_NOTE_TRACKS];
int m_iNumTracks;
/* By convention, all TrackVectors have the same size.
* If you want to set the size of one, be sure to set the rest. */
typedef vector<TapNote> TrackVector;
vector<TrackVector> m_TapNotes;
vector<HoldNote> m_HoldNotes;