summaryrefslogtreecommitdiff
path: root/libs/ardour/internal_send.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-04-18 18:50:38 +0000
committerCarl Hetherington <carl@carlh.net>2011-04-18 18:50:38 +0000
commit65a90ccffc81e5807479b50473cdfc85d4ec574c (patch)
tree27456ca389412d82f83269598babe96a334483d4 /libs/ardour/internal_send.cc
parent1ae3214c0dbd8491feff0add7b445fe1ab14ecab (diff)
Initialise aux send gain to -inf dB (#3990).
git-svn-id: svn://localhost/ardour2/branches/3.0@9368 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/internal_send.cc')
-rw-r--r--libs/ardour/internal_send.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/internal_send.cc b/libs/ardour/internal_send.cc
index bdfcf6d249..210835d176 100644
--- a/libs/ardour/internal_send.cc
+++ b/libs/ardour/internal_send.cc
@@ -40,6 +40,8 @@ InternalSend::InternalSend (Session& s, boost::shared_ptr<Pannable> p, boost::sh
throw failed_constructor();
}
}
+
+ _amp->set_gain (0, this);
}
InternalSend::~InternalSend ()