From 6ae77039c93f743ac377e34700fd5eb5af00101d Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Wed, 4 May 2011 16:48:48 -0400 Subject: [PATCH] Consistent measure comments with internals. For some time, we had the text file use // measure 1 when it was measure 0 internally. As usual, revert if this is a bad idea. It's just bugging me. --- src/NoteDataUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NoteDataUtil.cpp b/src/NoteDataUtil.cpp index 9b5748ce39..6b7f47cba1 100644 --- a/src/NoteDataUtil.cpp +++ b/src/NoteDataUtil.cpp @@ -367,7 +367,7 @@ void NoteDataUtil::GetSMNoteDataString( const NoteData &in, RString &sRet ) { if( m ) sRet.append( 1, ',' ); - sRet += ssprintf(" // measure %d\n", m+1); + sRet += ssprintf(" // measure %d\n", m); NoteType nt = GetSmallestNoteTypeForMeasure( *nd, m ); int iRowSpacing;