Use 8 audio IO in main variant

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-22 18:56:08 +00:00
parent 1314aeebb5
commit 026cde3807
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
4 changed files with 8 additions and 7 deletions

View file

@ -604,10 +604,10 @@ protected:
void initAudioPort(const bool input, uint32_t index, AudioPort& port) override
{
if (index >= 2)
if (index >= 8)
{
port.hints = kAudioPortIsCV | kCVPortHasPositiveUnipolarRange | kCVPortHasScaledRange;
index -= 2;
index -= 8;
}
CardinalBasePlugin::initAudioPort(input, index, port);