From: Paul Davis Date: Wed, 9 Feb 2011 16:37:07 +0000 (+0000) Subject: make SiP mute gain work ... hopefully without breaking anything else X-Git-Tag: 3.0-alpha5~648 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=2b3adfb18f0c2befb39b8b56d3e3f07833cc7b33 make SiP mute gain work ... hopefully without breaking anything else git-svn-id: svn://localhost/ardour2/branches/3.0@8808 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/libs/ardour/mute_master.cc b/libs/ardour/mute_master.cc index 5a261fb44f..c0e5ca8368 100644 --- a/libs/ardour/mute_master.cc +++ b/libs/ardour/mute_master.cc @@ -88,22 +88,22 @@ MuteMaster::mute_gain_at (MutePoint mp) const if (_soloed) { gain = 1.0; } else if (muted_by_self_at (mp)) { - gain = Config->get_solo_mute_gain (); + gain = 0.0; } else { if (muted_by_others_at (mp)) { - gain = 0.0; + gain = Config->get_solo_mute_gain (); } else { gain = 1.0; } } } else { if (muted_by_self_at (mp)) { - gain = Config->get_solo_mute_gain (); + gain = 0.0; } else if (_soloed) { gain = 1.0; } else { if (muted_by_others_at (mp)) { - gain = 0.0; + gain = Config->get_solo_mute_gain (); } else { gain = 1.0; }