summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-12 00:33:06 +0200
committerRobin Gareus <robin@gareus.org>2016-04-12 00:33:06 +0200
commit3fef6a3b8d14305e76728b4c21aeaf04b8b4dbe3 (patch)
tree1e622bbef326b45fb1184e45431aca205661371e /libs/ardour/route.cc
parentbd463e887aa21f467cd6815658f65fe9e6aa3f57 (diff)
hotfix process-graph: include internal-send -> internal return
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index ed23c0e23f..730176405e 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -3622,7 +3622,7 @@ Route::all_inputs () const
}
if (iop != 0 && iop->input()) {
- ios.push_back (iop->input());
+ ios.push_back (iop->input());
}
}
return ios;
@@ -3669,7 +3669,7 @@ Route::direct_feeds_according_to_reality (boost::shared_ptr<Route> other, bool*
if (iop != 0) {
boost::shared_ptr<const IO> iop_out = iop->output();
- if (iop_out && other->all_inputs().fed_by (iop_out)) {
+ if ((iop_out && other->all_inputs().fed_by (iop_out)) || iop->feeds (other)) {
DEBUG_TRACE (DEBUG::Graph, string_compose ("\tIOP %1 does feed %2\n", iop->name(), other->name()));
if (via_send_only) {
*via_send_only = true;