[splittiming] Minor update.

This commit is contained in:
Jason Felds
2011-05-14 18:04:11 -04:00
parent 4b89c0fae7
commit 1349350eb2
+1 -4
View File
@@ -381,10 +381,7 @@ void SMLoader::ProcessTimeSignatures( TimingData &out, const RString sParam )
const float fBeat = StringToFloat( vs2[0] );
TimeSignatureSegment seg;
seg.m_iStartRow = BeatToNoteRow(fBeat);
seg.m_iNumerator = atoi( vs2[1] );
seg.m_iDenominator = atoi( vs2[2] );
TimeSignatureSegment seg( BeatToNoteRow( fBeat ), StringToInt( vs2[1] ), StringToInt( vs2[2] ));
if( fBeat < 0 )
{