Skip to content

Commit 012a670

Browse files
committed
wet/dry
1 parent 98140ce commit 012a670

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Source/PluginProcessor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,14 +216,15 @@ void IceboxAudioProcessor::checkParams(SynthVoice* voice) {
216216
anythingChanged = true;
217217
}
218218

219-
// wet/dry
219+
// wet
220220
if (lastWet != (*wet).get()) {
221221
lastWet = (*wet).get();
222222
updateMe[9] = true;
223223
voice->wetDryChanged(lastWet / 100., lastDry / 100.);
224224
anythingChanged = true;
225225
}
226226

227+
// dry
227228
if (lastDry != (*dry).get()) {
228229
lastDry = (*dry).get();
229230
updateMe[10] = true;

0 commit comments

Comments
 (0)