From 544f2656110ecbcfee784bc69ef7601ac988f021 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 7 Aug 2006 05:11:09 +0000 Subject: [PATCH] Looks like we skip some for some reason. --- 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 4ac898adc2..0b52bfd423 100644 --- a/stepmania/src/NoteTypes.cpp +++ b/stepmania/src/NoteTypes.cpp @@ -44,7 +44,7 @@ float NoteTypeToBeat( NoteType nt ) case NOTE_TYPE_32ND: return 1.0f/8; // thirty-second notes case NOTE_TYPE_48TH: return 1.0f/12; // sixteenth note triplets case NOTE_TYPE_64TH: return 1.0f/16; // sixty-fourth notes - case NOTE_TYPE_192ND: return 1.0f/48; // thirty-second note triplets + case NOTE_TYPE_192ND: return 1.0f/48; // sixty-fourth note triplets default: ASSERT(0); // and fall through case NOTE_TYPE_INVALID: return 1.0f/48; }