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:
Tobias Doerffel
2009-07-07 01:21:16 +02:00
parent d8c616afcf
commit 7c2b3e6240

View File

@@ -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()];