From d4b53c69791f0a6d612040dfe0dd7e5ff9dfa9b9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Jan 2003 08:12:52 +0000 Subject: [PATCH] allow 32nd notes in the editor --- stepmania/src/SnapDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/SnapDisplay.cpp b/stepmania/src/SnapDisplay.cpp index ad1437aa9a..e7e660f630 100644 --- a/stepmania/src/SnapDisplay.cpp +++ b/stepmania/src/SnapDisplay.cpp @@ -60,7 +60,7 @@ bool SnapDisplay::PrevSnapMode() bool SnapDisplay::NextSnapMode() { - if( m_NoteType == NOTE_TYPE_16TH ) // this is the smallest snap we should allow + if( m_NoteType == NOTE_TYPE_32ND ) // this is the smallest snap we should allow return false; m_NoteType = NoteType(m_NoteType+1);