Browse Source

Fix Dexed being silent, closes #4

tags/2018-04-16
falkTX 10 years ago
parent
commit
f0706a8709
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      ports/dexed/source/PluginProcessor.cpp

+ 0
- 7
ports/dexed/source/PluginProcessor.cpp View File

@@ -230,13 +230,6 @@ void DexedAudioProcessor::processBlock(AudioSampleBuffer& buffer, MidiBuffer& mi
for (int channel = 1; channel < getNumInputChannels(); ++channel) {
buffer.copyFrom(channel, 0, channelData, numSamples, 1);
}
// In case we have more outputs than inputs, we'll clear any output
// channels that didn't contain input data, (because these aren't
// guaranteed to be empty - they may contain garbage).
for (int i = getNumInputChannels(); i < getNumOutputChannels(); ++i) {
buffer.clear (i, 0, buffer.getNumSamples());
}
}


Loading…
Cancel
Save