Amplify the dry signal as well

This commit is contained in:
Aleks Rutins 2023-04-15 20:21:02 -04:00
parent f1b054ec65
commit 6c97eaf786

View file

@ -22,7 +22,7 @@ namespace Dynamite {
dist = dist * gainCoeff;
output[pos] = (mix * dist) + ((1.0 - mix) * input[pos]);
output[pos] = (mix * dist) + ((1.0 - mix) * input[pos] * gainCoeff);
}
}
}