From 1f81d8a99659c2c8e037cb23595bea7e1af5a1ff Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Jan 2003 08:12:19 +0000 Subject: [PATCH] increase rows_per_beat, so we can properly handle 32nd notes --- stepmania/src/NoteTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NoteTypes.h b/stepmania/src/NoteTypes.h index 532ade0c79..f6014d61b6 100644 --- a/stepmania/src/NoteTypes.h +++ b/stepmania/src/NoteTypes.h @@ -54,7 +54,7 @@ const int MAX_BEATS = 3000; // J-Paradise has about 2120 const int BEATS_PER_MEASURE = 4; const int MAX_MEASURES = MAX_BEATS / BEATS_PER_MEASURE; -const int ROWS_PER_BEAT = 12; // It is important that this number is evenly divisible by 2, 3, and 4. +const int ROWS_PER_BEAT = 24; // 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_TAP_NOTE_ROWS = MAX_BEATS*ROWS_PER_BEAT;