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

Demos: Fix AudioPluginDemo Steinberg VST3 Validator failure when disabling buses

This commit is contained in:
reuk 2021-06-15 17:39:50 +01:00
parent 7020495a4e
commit 72738ccc64
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -204,10 +204,6 @@ public:
if (! mainInput.isDisabled() && mainInput != mainOutput)
return false;
// do not allow disabling the main buses
if (mainOutput.isDisabled())
return false;
// only allow stereo and mono
if (mainOutput.size() > 2)
return false;