From 9c5b3a7da42092ba078646a0b90976a87f2ce75d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 4 Nov 2003 18:28:06 +0000 Subject: [PATCH] Move default back to the right place. --- stepmania/src/NotesWriterDWI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/NotesWriterDWI.cpp b/stepmania/src/NotesWriterDWI.cpp index 00a791566b..022004c858 100644 --- a/stepmania/src/NotesWriterDWI.cpp +++ b/stepmania/src/NotesWriterDWI.cpp @@ -210,6 +210,9 @@ void NotesWriterDWI::WriteDWINotesField( FILE* fp, const Steps &out, int start ) fprintf( fp, "{" ); fCurrentIncrementer = 1.0/64 * BEATS_PER_MEASURE; break; + default: + ASSERT(0); + // fall though case NOTE_TYPE_48TH: case NOTE_TYPE_INVALID: // since, for whatever reason, the only way to do @@ -217,9 +220,6 @@ void NotesWriterDWI::WriteDWINotesField( FILE* fp, const Steps &out, int start ) fprintf( fp, "`" ); fCurrentIncrementer = 1.0/192 * BEATS_PER_MEASURE; break; - default: - ASSERT(0); - // fall though } double fFirstBeatInMeasure = m * BEATS_PER_MEASURE;