From 536b223b68cdcd0f806ec58723bd96de08333bd5 Mon Sep 17 00:00:00 2001 From: probonopd Date: Wed, 20 Apr 2022 20:24:32 +0200 Subject: [PATCH] SetReverbSend --- src/mididevice.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mididevice.cpp b/src/mididevice.cpp index e304c26..888c59d 100644 --- a/src/mididevice.cpp +++ b/src/mididevice.cpp @@ -186,11 +186,11 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign case MIDI_CC_FREQUENCY_CUTOFF: m_pSynthesizer->SetCutoff (pMessage[2], nTG); break; -/* + case MIDI_CC_REVERB_LEVEL: - m_pSynthesizer->SetReverbLevel (pMessage[2]); + m_pSynthesizer->SetReverbSend (pMessage[2], nTG); break; -*/ + case MIDI_CC_DETUNE_LEVEL: m_pSynthesizer->SetMasterTune (pMessage[2], nTG); break;