mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix incorrect number of output buses in standalone plug-in client
This commit is contained in:
parent
0a040c6b97
commit
a714febbe3
1 changed files with 2 additions and 2 deletions
|
|
@ -83,8 +83,8 @@ public:
|
|||
jassert (processor != nullptr); // Your createPluginFilter() function must return a valid object!
|
||||
|
||||
// try to disable sidechain and aux buses
|
||||
const int numInBuses = processor->busArrangement.inputBuses.size();
|
||||
const int numOutBuses = processor->busArrangement.inputBuses.size();
|
||||
const int numInBuses = processor->busArrangement.inputBuses. size();
|
||||
const int numOutBuses = processor->busArrangement.outputBuses.size();
|
||||
|
||||
for (int busIdx = 1; busIdx < numInBuses; ++busIdx)
|
||||
processor->setPreferredBusArrangement (true, busIdx, AudioChannelSet::disabled());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue