2
0
Fork 0

Update juce_StandaloneFilterWindow.h

Removed standalone audio input option.
This commit is contained in:
George Reales 2022-07-15 11:55:01 +02:00
parent 163213bb95
commit a2aa26b28b
1 changed files with 2 additions and 2 deletions

View File

@ -277,8 +277,8 @@ public:
maxNumOutputs = jmax (0, (int) defaultConfig.numOuts); maxNumOutputs = jmax (0, (int) defaultConfig.numOuts);
} }
if (auto* bus = processor->getBus (true, 0)) // if (auto* bus = processor->getBus (true, 0))
maxNumInputs = jmax (0, bus->getDefaultLayout().size()); // maxNumInputs = jmax (0, bus->getDefaultLayout().size());
if (auto* bus = processor->getBus (false, 0)) if (auto* bus = processor->getBus (false, 0))
maxNumOutputs = jmax (0, bus->getDefaultLayout().size()); maxNumOutputs = jmax (0, bus->getDefaultLayout().size());