mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Examples: Ensured that the MultiOutSynth example accepts disabled aux busses
This commit is contained in:
parent
11bd36b3ce
commit
e12e0bb4fe
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ public:
|
||||||
&& 1 <= outputs.size()
|
&& 1 <= outputs.size()
|
||||||
&& std::all_of (outputs.begin(), outputs.end(), [] (const auto& bus)
|
&& std::all_of (outputs.begin(), outputs.end(), [] (const auto& bus)
|
||||||
{
|
{
|
||||||
return bus == AudioChannelSet::stereo();
|
return bus.isDisabled() || bus == AudioChannelSet::stereo();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue