Explorar el Código

JUCE Multieffect Updated with assignable parameters

LuigiBiasi-Athenagroup hace 6 meses
padre
commit
c73306efd1
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      JUCE/CMLSProject/Source/CMLSDelay.cpp

+ 0 - 1
JUCE/CMLSProject/Source/CMLSDelay.cpp

@@ -29,7 +29,6 @@ void CMLSDelay::reset() {
 void CMLSDelay::prepare(const juce::dsp::ProcessSpec& spec) {
 	this->maximumDelaySamples = spec.sampleRate * MAX_DELAY_LENGTH;
 	this->delayRange = new juce::NormalisableRange<float>(0, this->maximumDelaySamples);
-	this->delayRange
 	
 	this->delayLine.prepare(spec);
 	this->delayLine.setMaximumDelayInSamples(this->maximumDelaySamples);