File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -91,18 +91,18 @@ int AeolusAudioProcessor::getCurrentProgram()
9191 return _engine.getSequencer ()->getCurrentStep ();
9292}
9393
94- void AeolusAudioProcessor::setCurrentProgram (int index)
94+ void AeolusAudioProcessor::setCurrentProgram (int index)
9595{
9696 if (index >= 0 && index < _engine.getSequencer ()->getStepsCount ())
9797 _engine.getSequencer ()->setStep (index);
9898}
9999
100- const juce::String AeolusAudioProcessor::getProgramName (int index)
100+ const juce::String AeolusAudioProcessor::getProgramName (int index)
101101{
102102 return juce::String (" Sequencer step " ) + juce::String (index + 1 );
103103}
104104
105- void AeolusAudioProcessor::changeProgramName (int /* index */ , const juce::String& /* newName */ )
105+ void AeolusAudioProcessor::changeProgramName (int /* index */ , const juce::String& /* newName */ )
106106{
107107}
108108
Original file line number Diff line number Diff line change @@ -293,7 +293,6 @@ void Pipewave::genwave()
293293 v = v0 * math::exp2ap (0 .1661f * (v + _model.getHarmonicRandomisation (h, _note) * (2 .0f * rnd.nextFloat () - 1 .0f )));
294294 k = (int )(_sampleRate * _model.getHarmonicAttack (h, _note) + 0 .5f );
295295
296- // jassert(k <= _att.size());
297296 if (k > _att.size ())
298297 _att.resize (k);
299298
You can’t perform that action at this time.
0 commit comments