summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/route.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index a53fdee416..1db571385f 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2083,7 +2083,10 @@ Route::try_configure_processors_unlocked (ChanCount in, ProcessorStreams* err)
if (boost::dynamic_pointer_cast<Delivery> (*p)
&& boost::dynamic_pointer_cast<Delivery> (*p)->role() == Delivery::Main
- && _strict_io) {
+#ifndef MIXBUS
+ && _strict_io
+#endif
+ ) {
/* with strict I/O the panner + output are forced to
* follow the last processor's output.
*