Skip to content

Commit

Permalink
accidentally pointed Osc 1 Octave Name parameter to Osc 1 Level ID
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudcover committed Jan 22, 2021
1 parent 71c97ce commit f53e9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ juce::AudioProcessorValueTreeState::ParameterLayout BasicSubtractiveSynthAudioPr
params.push_back(std::move(osc1TypeParam));
auto osc1LevelParam = std::make_unique<juce::AudioParameterFloat>(OSC1_LEVEL_ID, OSC1_LEVEL_NAME, 0.0f, 1.0f, 0.5f);
params.push_back(std::move(osc1LevelParam));
auto osc1OctaveParam = std::make_unique<juce::AudioParameterFloat>(OSC1_OCTAVE_ID, OSC1_LEVEL_ID, 0.0f, 4.0f, 2.0f);
auto osc1OctaveParam = std::make_unique<juce::AudioParameterFloat>(OSC1_OCTAVE_ID, OSC1_OCTAVE_NAME, 0.0f, 4.0f, 2.0f);
params.push_back(std::move(osc1OctaveParam));

auto osc2TypeParam = std::make_unique<juce::AudioParameterFloat>(OSC2_TYPE_ID, OSC2_TYPE_NAME, 0.0f, 2.0f, 0.0f);
Expand Down

0 comments on commit f53e9a1

Please sign in to comment.