From 5a06315926bfd907422304faa2b81f338dd22b04 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 14 May 2011 19:34:57 -0400 Subject: [PATCH] [splittiming] Right, song timing always is X/4. --- src/NotesLoaderSMA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NotesLoaderSMA.cpp b/src/NotesLoaderSMA.cpp index 9cfca78a83..f845127975 100644 --- a/src/NotesLoaderSMA.cpp +++ b/src/NotesLoaderSMA.cpp @@ -288,7 +288,7 @@ void SMALoader::ProcessBeatsPerMeasure( TimingData &out, const RString sParam ) const float fBeat = StringToFloat( vs2[0] ); - TimeSignatureSegment seg( BeatToNoteRow( fBeat ), StringToInt( vs2[1] ), StringToInt( vs2[2] )); + TimeSignatureSegment seg( BeatToNoteRow( fBeat ), StringToInt( vs2[1] ), 4 ); if( fBeat < 0 ) {