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 27e8034c26cae40f3e4aab7f8e38b319da7d28fb
parent 74e0921f5a57b3a9d6400e6483d71ef6b008062d
Author: Tal Aviram <me@talaviram.com>
Date:   Fri, 20 Aug 2021 13:15:13 +0300

controller - request arrangment after setting a single preset.

Diffstat:
Msource/jucePlugin/VirusController.cpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/source/jucePlugin/VirusController.cpp b/source/jucePlugin/VirusController.cpp @@ -211,6 +211,7 @@ namespace Virus for (auto i = 0; i < kDataSizeInBytes; ++i) patch.push_back(preset.data[i]); sendSysEx(constructMessage(patch)); + sendSysEx(constructMessage({MessageType::REQUEST_ARRANGEMENT})); } void Controller::parseSingle(const SysEx &msg)