gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit d1012f4c930bcfb1ba38214a1e942b5db8bd0e4e
parent fa805008879208b3e5ad40bd8ffb7c7367306364
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Tue, 18 Jan 2022 20:39:07 +0100

do not remove midi clock processing

Diffstat:
Msource/synthLib/plugin.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/synthLib/plugin.cpp b/source/synthLib/plugin.cpp @@ -56,7 +56,7 @@ namespace synthLib std::lock_guard lock(m_lock); processMidiInEvents(); -// processMidiClock(_bpm, _ppqPos, _isPlaying, _count); + processMidiClock(_bpm, _ppqPos, _isPlaying, _count); m_resampler.process(inputs, outputs, m_midiIn, m_midiOut, static_cast<uint32_t>(_count), [&](float** _in, float** _out, size_t _c, const ResamplerInOut::TMidiVec& _midiIn, ResamplerInOut::TMidiVec& _midiOut)