Skip to content

Commit

Permalink
Coding conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
Veratil committed Oct 10, 2019
1 parent 154de1f commit ff93d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/MidiImport/MidiImport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,8 @@ bool MidiImport::readSMF( TrackContainer* tc )
for( int s = 0; s < timeSigs->length(); ++s )
{
Alg_time_sig timeSig = (*timeSigs)[s];
timeSigNumeratorPat->putValue(timeSig.beat*ticksPerBeat, timeSig.num);
timeSigDenominatorPat->putValue(timeSig.beat*ticksPerBeat, timeSig.den);
timeSigNumeratorPat->putValue(timeSig.beat * ticksPerBeat, timeSig.num);
timeSigDenominatorPat->putValue(timeSig.beat * ticksPerBeat, timeSig.den);
}
// manually call otherwise the pattern shows being 1 bar
timeSigNumeratorPat->updateLength();
Expand Down

0 comments on commit ff93d48

Please sign in to comment.