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:
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)
{