From 81f54f98f2555078b12deee46f6bd5eae3fa8bb5 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Thu, 25 Feb 2021 01:26:12 +0100 Subject: [PATCH] Fix strings parameters corrupted in opcode spec work --- src/sfizz/effects/Strings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/effects/Strings.cpp b/src/sfizz/effects/Strings.cpp index 2ef50f7c..070496ec 100644 --- a/src/sfizz/effects/Strings.cpp +++ b/src/sfizz/effects/Strings.cpp @@ -116,7 +116,7 @@ namespace fx { auto outputR = absl::MakeSpan(outputs[1], nframes); absl::Span wet = _tempBuffer.getSpan(2).first(nframes); - sfz::fill(wet, 0.01f *_wet); // TOD strings_wet_oncc modulation... + sfz::fill(wet, _wet); // TOD strings_wet_oncc modulation... sfz::copy(inputL, outputL); sfz::copy(inputR, outputR);