From aa8b3275457546e5a48c9a83dab9d8f40d0b9893 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 7 Aug 2006 05:09:11 +0000 Subject: [PATCH] 192nd note. --- stepmania/src/NoteTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NoteTypes.cpp b/stepmania/src/NoteTypes.cpp index df160fbbb0..4ac898adc2 100644 --- a/stepmania/src/NoteTypes.cpp +++ b/stepmania/src/NoteTypes.cpp @@ -60,7 +60,7 @@ NoteType GetNoteType( int row ) else if( row % (ROWS_PER_MEASURE/32) == 0) return NOTE_TYPE_32ND; else if( row % (ROWS_PER_MEASURE/48) == 0) return NOTE_TYPE_48TH; else if( row % (ROWS_PER_MEASURE/64) == 0) return NOTE_TYPE_64TH; - else return NOTE_TYPE_INVALID; + else return NOTE_TYPE_192ND; }; NoteType BeatToNoteType( float fBeat )