From 2b3adfb18f0c2befb39b8b56d3e3f07833cc7b33 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 9 Feb 2011 16:37:07 +0000 Subject: [PATCH] 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 --- libs/ardour/mute_master.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.30.2