Skip to content

Commit

Permalink
Fixed code
Browse files Browse the repository at this point in the history
  • Loading branch information
sadko4u committed Apr 9, 2024
1 parent d28f8ec commit bbeba08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/plug/impulse_reverb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ namespace lsp
const float dry = pDry->value() * out_gain;
const float wet = pWet->value() * out_gain;
const float drywet = pDryWet->value() * 0.01f;
const float dry_gain = dry * drywet + 1.0f - drywet;;
const float dry_gain = dry * drywet + 1.0f - drywet;
const float wet_gain = wet * drywet;
const bool bypass = pBypass->value() >= 0.5f;
const float predelay = pPredelay->value();
Expand Down

0 comments on commit bbeba08

Please sign in to comment.