From b15ec02955dc1200dec4faf0afad1e93608531e9 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Tue, 18 Jan 2011 10:24:50 -0500 Subject: [PATCH] Consistent writing with the BPMs. --- src/NotesWriterSM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NotesWriterSM.cpp b/src/NotesWriterSM.cpp index 296d11dff0..7d31865257 100644 --- a/src/NotesWriterSM.cpp +++ b/src/NotesWriterSM.cpp @@ -103,7 +103,7 @@ static void WriteGlobalTags( RageFile &f, const Song &out ) { const BPMSegment &bs = out.m_Timing.m_BPMSegments[i]; - f.Write( ssprintf( "%.6f=%.6f", NoteRowToBeat(bs.m_iStartRow), bs.GetBPM() ) ); + f.PutLine( ssprintf( "%.6f=%.6f", NoteRowToBeat(bs.m_iStartRow), bs.GetBPM() ) ); if( i != out.m_Timing.m_BPMSegments.size()-1 ) f.Write( "," ); }