allow 32nd notes in the editor

This commit is contained in:
Glenn Maynard
2003-01-09 08:12:52 +00:00
parent 1f81d8a996
commit d4b53c6979
+1 -1
View File
@@ -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);