From 3dc8f02cec5f4012e8278a53db0cbd06d3599f23 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 23 Mar 2005 19:39:15 +0000 Subject: [PATCH] change cap back to 50 per measure --- 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 c1ed61059b..766b39ab33 100644 --- a/stepmania/src/NoteTypes.h +++ b/stepmania/src/NoteTypes.h @@ -146,7 +146,7 @@ const int MAX_NOTE_TRACKS = 16; const int ROWS_PER_BEAT = 48; /* In the editor, enforce a reasonable limit on the number of notes. */ -const int MAX_NOTES_PER_MEASURE = 25; +const int MAX_NOTES_PER_MEASURE = 50; const int BEATS_PER_MEASURE = 4; const int ROWS_PER_MEASURE = ROWS_PER_BEAT * BEATS_PER_MEASURE;