Fix SNAFU in 20d813cd17 (surround mute point)

This commit is contained in:
Robin Gareus 2024-03-13 23:00:59 +01:00
parent f1ecd8c124
commit 2224aca75c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ MuteMaster::set_state (const XMLNode& node, int version)
_muted_by_self = (_mute_point != MutePoint (0));
}
if (version < 7003 && Config->get_mute_affects_surround_sends ()) {
_muted_by_self |= SurroundSend;
_mute_point = MutePoint (_mute_point | SurroundSend);
}
return 0;