mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
ignore sidechain configuration test result
This commit is contained in:
parent
443f792cfe
commit
6154dc595c
1 changed files with 4 additions and 4 deletions
|
|
@ -93,9 +93,9 @@ SideChain::can_support_io_configuration (const ChanCount& in, ChanCount& out)
|
|||
bool
|
||||
SideChain::configure_io (ChanCount in, ChanCount out)
|
||||
{
|
||||
if (out != in + _input->n_ports()) {
|
||||
return false;
|
||||
if (out != in + _input->n_ports ()) {
|
||||
/* disabled for now - see PluginInsert::configure_io() */
|
||||
// return false;
|
||||
}
|
||||
Processor::configure_io(in, out);
|
||||
return true;
|
||||
return Processor::configure_io (in, out);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue