diff options
author | JP Cimalando <jpcima@users.noreply.github.com> | 2019-01-24 06:47:36 +0100 |
---|---|---|
committer | JP Cimalando <jpcima@users.noreply.github.com> | 2019-01-25 08:41:33 +0100 |
commit | a6256daf01e9ffe1fcb32557f9f9712432f855fd (patch) | |
tree | d99348e39af1657142fe713a0ef4301c513c1c2a /src/adlmidi_sequencer.cpp | |
parent | de2aa6999c38046472bf557b654f296df0903629 (diff) | |
download | libADLMIDI-a6256daf01e9ffe1fcb32557f9f9712432f855fd.tar.gz libADLMIDI-a6256daf01e9ffe1fcb32557f9f9712432f855fd.tar.bz2 libADLMIDI-a6256daf01e9ffe1fcb32557f9f9712432f855fd.zip |
drum note length extension
Diffstat (limited to 'src/adlmidi_sequencer.cpp')
-rw-r--r-- | src/adlmidi_sequencer.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/adlmidi_sequencer.cpp b/src/adlmidi_sequencer.cpp index e8c7a5d..d78815f 100644 --- a/src/adlmidi_sequencer.cpp +++ b/src/adlmidi_sequencer.cpp @@ -141,16 +141,8 @@ double MIDIplay::Tick(double s, double granularity) MidiSequencer &seqr = *m_sequencer; double ret = seqr.Tick(s, granularity); - Synth &synth = *m_synth; s *= seqr.getTempoMultiplier(); - for(uint16_t c = 0; c < synth.m_numChannels; ++c) - m_chipChannels[c].addAge(static_cast<int64_t>(s * 1e6)); - - updateVibrato(s); - updateArpeggio(s); -#if !defined(ADLMIDI_AUDIO_TICK_HANDLER) - updateGlide(s); -#endif + TickIterators(s); return ret; } |