Skip to content

Commit 22cdd92

Browse files
committed
LFOProcessor: Added the noises to the choices.
1 parent 4a1ae49 commit 22cdd92

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/squarepine_audio/effects/LFOProcessor.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ class LFOProcessor::TypeParameter final : public AudioParameterChoice
1818
choices.add (NEEDS_TRANS ("Triangle"));
1919
choices.add (NEEDS_TRANS ("Ramp"));
2020
choices.add (NEEDS_TRANS ("Sawtooth"));
21-
choices.add (NEEDS_TRANS ("Square"));
21+
choices.add (NEEDS_TRANS ("White Noise"));
22+
choices.add (NEEDS_TRANS ("Pink Noise"));
23+
choices.add (NEEDS_TRANS ("Blue Noise"));
24+
choices.add (NEEDS_TRANS ("Brownian Noise"));
2225
return choices;
2326
}
2427

0 commit comments

Comments
 (0)