Skip to content

Commit

Permalink
Correct isBusesLayoutSupported after 128ch update
Browse files Browse the repository at this point in the history
  • Loading branch information
firthm01 committed Jan 8, 2024
1 parent 9e3ee20 commit 9552317
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@ bool EarBinauralMonitoringAudioProcessor::isBusesLayoutSupported(
return false;
if(layouts.outputBuses[1] != AudioChannelSet::mono())
return false;
if(layouts.outputBuses[2] != AudioChannelSet::discreteChannels(62))
if (layouts.outputBuses[2] !=
AudioChannelSet::discreteChannels(MAX_DAW_CHANNELS - 2))
return false;

return true;
Expand Down

0 comments on commit 9552317

Please sign in to comment.