Browse Source

Fixed a typo in the AUv3Synth sample code

tags/2021-05-28
hogliux 7 years ago
parent
commit
d3efd6e685
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/AUv3Synth/Source/AUv3SynthProcessor.cpp

+ 1
- 1
examples/AUv3Synth/Source/AUv3SynthProcessor.cpp 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


Loading…
Cancel
Save