diff options
Diffstat (limited to 'src/libs/engine/ConnectionImpl.cpp')
-rw-r--r-- | src/libs/engine/ConnectionImpl.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libs/engine/ConnectionImpl.cpp b/src/libs/engine/ConnectionImpl.cpp index 4114e7ae..019a051e 100644 --- a/src/libs/engine/ConnectionImpl.cpp +++ b/src/libs/engine/ConnectionImpl.cpp @@ -54,7 +54,7 @@ ConnectionImpl::ConnectionImpl(PortImpl* src_port, PortImpl* dst_port) /*assert((src_port->parent_node()->poly() == dst_port->parent_node()->poly()) || (src_port->parent_node()->poly() == 1 || dst_port->parent_node()->poly() == 1));*/ - if (type() == DataType::MIDI) + if (type() == DataType::MIDI || type() == DataType::OSC) _must_mix = false; // FIXME: kludge if (_must_mix) @@ -164,6 +164,10 @@ ConnectionImpl::process(ProcessContext& context) cerr << "WARNING: No MIDI mixing." << endl; + } else if (_must_mix && type() == DataType::OSC) { + + cerr << "WARNING: No OSC mixing." << endl; + } } |