Skip to content

Commit

Permalink
Fixed bug with compBlend (#2972)
Browse files Browse the repository at this point in the history
Fixed bug where compressor blend value was not being loaded from saved song
  • Loading branch information
seangoodvibes authored Nov 24, 2024
1 parent b7c7448 commit f9f9f9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit f9f9f9f

Please sign in to comment.