commit 76cc015b1055e628fa5490b3de4c1351005b8c9a parent 2212a68b8322e8000cd70bc373d68be66ceb0a7b Author: Adam <[email protected]> Date: Wed, 11 Dec 2019 12:10:16 -0600 Use selected channelCountEnum to determine output channel count Diffstat:
M | src/ComputerscarePatchSequencer.cpp | | | 15 | ++++++++++----- |
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/ComputerscarePatchSequencer.cpp b/src/ComputerscarePatchSequencer.cpp @@ -80,13 +80,18 @@ struct ComputerscarePatchSequencer : Module { void updateChannelCount() { int currentMax; - for(int j = 0; j < numOutputs; j++) { - currentMax=0; - for(int i = 0; i < numInputs; i++) { - if (switch_states[address][i][j] && inputs[INPUT_JACKS+i].isConnected()) { - currentMax = std::max(currentMax,inputs[INPUT_JACKS+i].getChannels()); + if(channelCountEnum == -1) { + for(int j = 0; j < numOutputs; j++) { + currentMax=0; + for(int i = 0; i < numInputs; i++) { + if (switch_states[address][i][j] && inputs[INPUT_JACKS+i].isConnected()) { + currentMax = std::max(currentMax,inputs[INPUT_JACKS+i].getChannels()); + } } } + else { + currentMax=channelCountEnum; + } channelCount[j]=currentMax; outputs[OUTPUTS+j].setChannels(currentMax); }