Don't silence input ports.
Fix for input buffers being erroneously silenced when the transport is not rolling.
This commit is contained in:
parent
66daa1e23f
commit
1d826848a4
|
@ -157,8 +157,7 @@ Track::process_input ( nframes_t nframes )
|
||||||
|
|
||||||
if ( ! transport->rolling )
|
if ( ! transport->rolling )
|
||||||
{
|
{
|
||||||
for ( int i = input.size(); i--; )
|
/* There is no work to do when we're not rolling. */
|
||||||
input[ i ].silence( nframes );
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue