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 a8b474be0f622002672680b4979dd13a6e0db0f1
parent 6cb6b0fce6583810631c386456982a9bc874a03c
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat, 18 May 2024 16:40:13 +0200

[Osirus][OsTIrus][Fix] Remote control via hardware not possible if hardware is running in Single mode and Page A is sent as control changes

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

diff --git a/source/virusJucePlugin/VirusController.cpp b/source/virusJucePlugin/VirusController.cpp @@ -138,7 +138,7 @@ namespace Virus const auto index = _data.find(pluginLib::MidiDataType::ParameterIndex)->second; const auto value = _data.find(pluginLib::MidiDataType::ParameterValue)->second; - const auto& partParams = findSynthParam(part, page, index); + const auto& partParams = findSynthParam(part == virusLib::SINGLE ? 0 : part, page, index); if (partParams.empty() && part != 0 && part != virusLib::SINGLE) {