We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98140ce commit 012a670Copy full SHA for 012a670
1 file changed
Source/PluginProcessor.cpp
@@ -216,14 +216,15 @@ void IceboxAudioProcessor::checkParams(SynthVoice* voice) {
216
anythingChanged = true;
217
}
218
219
- // wet/dry
+ // wet
220
if (lastWet != (*wet).get()) {
221
lastWet = (*wet).get();
222
updateMe[9] = true;
223
voice->wetDryChanged(lastWet / 100., lastDry / 100.);
224
225
226
227
+ // dry
228
if (lastDry != (*dry).get()) {
229
lastDry = (*dry).get();
230
updateMe[10] = true;
0 commit comments