Consistent writing with the BPMs.

This commit is contained in:
Jason Felds
2011-01-18 10:24:50 -05:00
parent b1cfa59743
commit b15ec02955
+1 -1
View File
@@ -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( "," );
}