From 91e6d87930a3400d3ddfd0b41f1a578245d8d632 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 19 Mar 2018 11:04:09 -0400 Subject: [PATCH] MIDI-1: Add retrigger when key is lifted --- src/Core/MIDIToCVInterface.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core/MIDIToCVInterface.cpp b/src/Core/MIDIToCVInterface.cpp index a03b1f6a..28c75d67 100644 --- a/src/Core/MIDIToCVInterface.cpp +++ b/src/Core/MIDIToCVInterface.cpp @@ -103,6 +103,7 @@ struct MIDIToCVInterface : Module { if (!heldNotes.empty()) { lastNote = heldNotes[heldNotes.size() - 1]; gate = true; + retriggerPulse.trigger(1e-3); } else { gate = false;