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 280c02a09d9d575206ae07767b202d4e62543dc0
parent 07ae6c409d65e1186447e59ce418187e79c23632
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Fri,  9 Aug 2024 22:29:41 +0200

fix midi buffer being too small causing AU validation to get stuck

Diffstat:
Msource/nord/n2x/n2xLib/n2xhardware.h | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/source/nord/n2x/n2xLib/n2xhardware.h b/source/nord/n2x/n2xLib/n2xhardware.h @@ -85,9 +85,8 @@ namespace n2x std::unique_ptr<std::thread> m_ucThread; bool m_destroy = false; - // Midi - dsp56k::RingBuffer<synthLib::SMidiEvent, 256, true, true> m_midiIn; + dsp56k::RingBuffer<synthLib::SMidiEvent, 16384, true> m_midiIn; uint32_t m_midiOffsetCounter = 0; // DSP slowdown