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

Fixed a typo in the AUv3Synth sample code

This commit is contained in:
hogliux 2017-07-24 10:03:24 +01:00
parent 7582952cdf
commit d3efd6e685

View file

@ -49,7 +49,7 @@ public:
//==============================================================================
bool isBusesLayoutSupported (const BusesLayout& layouts) const override
{
return (layouts.getMainInputChannels() == 2);
return (layouts.getMainOutputChannels() == 2);
}
void prepareToPlay (double sampleRate, int estimatedMaxSizeOfBuffer) override