allow only 'M' and not 'm' for a mine

This commit is contained in:
Chris Danford
2003-11-12 06:44:15 +00:00
parent 5da63f9d1c
commit 746d9d29eb
+3 -1
View File
@@ -109,7 +109,9 @@ void NoteDataUtil::LoadFromSMNoteDataString( NoteData &out, CString sSMNoteData
case '1': t = TAP_TAP; break;
case '2': t = TAP_HOLD_HEAD; break;
case '3': t = TAP_HOLD_TAIL; break;
case 'm':
// case 'm':
// Don't be loose with the definition. Use only 'M' since
// that's what we've been writing to disk. -Chris
case 'M': t = TAP_MINE; break;
default: