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

VST3: Fix ambisonic speaker layout conversions

This commit is contained in:
reuk 2023-07-20 22:40:26 +01:00
parent a8fa44e05c
commit 0f80e1be1a
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
3 changed files with 43 additions and 17 deletions

View file

@ -267,7 +267,7 @@ private:
auto itemId = 1;
auto selectedId = -1;
for (auto i = 1; i < AudioChannelSet::maxChannelsOfNamedLayout; ++i)
for (auto i = 1; i <= AudioChannelSet::maxChannelsOfNamedLayout; ++i)
{
for (const auto& set : AudioChannelSet::channelSetsWithNumberOfChannels (i))
{