RemoteVstPlugin: print number of inputs/outputs as debugg message
When input/output count changes, always print new number of inputs and
outputs as debugg message.
Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
(cherry picked from commit 5838f63d0b)
This commit is contained in:
@@ -891,6 +891,10 @@ void RemoteVstPlugin::updateInOutCount()
|
||||
setInputCount( inputCount() );
|
||||
setOutputCount( outputCount() );
|
||||
|
||||
char buf[64];
|
||||
sprintf( buf, "inputs: %d output: %d\n", inputCount(), outputCount() );
|
||||
debugMessage( buf );
|
||||
|
||||
if( inputCount() > 0 )
|
||||
{
|
||||
m_inputs = new float * [inputCount()];
|
||||
|
||||
Reference in New Issue
Block a user