From f9f9f9fefb820319867a65380a46fc9b97bb04d9 Mon Sep 17 00:00:00 2001 From: Sean Ditny <138174805+seangoodvibes@users.noreply.github.com> Date: Sun, 24 Nov 2024 12:20:41 -0500 Subject: [PATCH] Fixed bug with compBlend (#2972) Fixed bug where compressor blend value was not being loaded from saved song --- src/deluge/model/mod_controllable/mod_controllable_audio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deluge/model/mod_controllable/mod_controllable_audio.cpp b/src/deluge/model/mod_controllable/mod_controllable_audio.cpp index cc0db7f6a6..241a6be547 100644 --- a/src/deluge/model/mod_controllable/mod_controllable_audio.cpp +++ b/src/deluge/model/mod_controllable/mod_controllable_audio.cpp @@ -698,7 +698,7 @@ Error ModControllableAudio::readTagFromFile(Deserializer& reader, char const* ta } else if (!strcmp(tagName, "compBlend")) { q31_t masterCompressorBlend = reader.readTagOrAttributeValueInt(); - compressor.setRelease(masterCompressorBlend); + compressor.setBlend(masterCompressorBlend); reader.exitTag("compBlend"); } else {