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 d91969533d8ae5a304bb25233a30ed4b7a1b1d48
parent 9e5b82a8e712fd4ef9db1d01080f9f268a78c1e8
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun, 21 Jul 2024 20:00:19 +0200

do not send midi too early

Diffstat:
Msource/nord/n2x/n2xLib/n2xmc.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/nord/n2x/n2xLib/n2xmc.cpp b/source/nord/n2x/n2xLib/n2xmc.cpp @@ -346,10 +346,10 @@ namespace n2x m_totalCycles += cycles; - if(m_totalCycles > 0x1000000 && !m_hasSentMidi) + if(m_totalCycles > 0x4000000 && !m_hasSentMidi) { m_hasSentMidi = true; - + LOG("Sending MIDI Note On"); m_midi.writeMidi(synthLib::M_NOTEON); m_midi.writeMidi(synthLib::Note_C3); m_midi.writeMidi(100);