1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

VST3: Remove unhelpful assertion

Some hosts (e.g. REAPER) will attempt to instantiate plug-ins with 64
active channels, and JUCE can't represent this layout. In this case,
failing to convert between VST3/JUCE layouts is not a logical error, so
asserting is not appropriate.
This commit is contained in:
reuk 2023-01-26 17:45:32 +00:00
parent f7a28a6d62
commit 39ba1c8383
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -485,7 +485,6 @@ inline std::optional<AudioChannelSet> getChannelSetForSpeakerArrangement (Steinb
return AudioChannelSet::channelSetWithChannels (*order);
// VST3 <-> JUCE layout conversion error: report this bug to the JUCE forum
jassertfalse;
return {};
}