Skip to content

Commit

Permalink
Correct output channel count
Browse files Browse the repository at this point in the history
Seems to have been left over from the 128 channel support changes
  • Loading branch information
firthm01 committed Jan 4, 2024
1 parent 4538971 commit eda941f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ EarBinauralMonitoringAudioProcessor::_getBusProperties() {
"Input", AudioChannelSet::discreteChannels(MAX_DAW_CHANNELS), true);
ret = ret.withOutput("Left Ear", AudioChannelSet::mono(), true);
ret = ret.withOutput("Right Ear", AudioChannelSet::mono(), true);
ret = ret.withOutput("(Unused)", AudioChannelSet::discreteChannels(62), true);
ret = ret.withOutput("(Unused)", AudioChannelSet::discreteChannels(MAX_DAW_CHANNELS-2), true);
return ret;
}

Expand Down

0 comments on commit eda941f

Please sign in to comment.