mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
L: do not add main outs proc to a RouteIOs list for livetrax
This commit is contained in:
parent
c98ec4456d
commit
44ee16a5ac
1 changed files with 8 additions and 0 deletions
|
|
@ -300,6 +300,14 @@ PortGroupList::maybe_add_processor_to_list (std::weak_ptr<Processor> wp, list<st
|
|||
return;
|
||||
}
|
||||
|
||||
#ifdef LIVETRAX
|
||||
std::shared_ptr<Delivery> d = std::dynamic_pointer_cast<Delivery> (p);
|
||||
|
||||
if (d && d->role() == Delivery::Main) {
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
std::shared_ptr<IOProcessor> iop = std::dynamic_pointer_cast<IOProcessor> (p);
|
||||
|
||||
if (iop) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue