oops; MAX_NOTE_ROW was in beats

This commit is contained in:
Glenn Maynard
2005-01-22 19:18:02 +00:00
parent 9735755e00
commit 4fbcbdf77c
+1 -3
View File
@@ -117,8 +117,6 @@ struct TapNote
TapNoteResult result;
};
const unsigned MAX_NUM_ATTACKS = 2*2*2; // 3 bits to hold the attack index currently
extern TapNote TAP_EMPTY; // '0'
extern TapNote TAP_ORIGINAL_TAP; // '1'
extern TapNote TAP_ORIGINAL_HOLD_HEAD; // '2'
@@ -136,7 +134,7 @@ const int MAX_NOTE_TRACKS = 16;
const int BEATS_PER_MEASURE = 4;
const int ROWS_PER_BEAT = 48; // It is important that this number is evenly divisible by 2, 3, and 4.
const int ROWS_PER_MEASURE = ROWS_PER_BEAT * BEATS_PER_MEASURE;
const int MAX_NOTE_ROW = ( (1<<30) / ROWS_PER_BEAT );
const int MAX_NOTE_ROW = (1<<30);
enum NoteType
{