Fix fxmixer bug where fx chains get shut off when multiple channels are chained together

This commit is contained in:
Vesa
2014-10-15 20:50:32 +03:00
parent 37671b1427
commit ec5384c10e

View File

@@ -131,9 +131,8 @@ void FxChannel::doProcessing( sampleFrame * _buf )
_buf[f][0] += ch_buf[f][0] * v;
_buf[f][1] += ch_buf[f][1] * v;
}
m_hasInput = true;
}
// if sender channel hasInput, then we hasInput too
if( sender->m_hasInput ) { m_hasInput = true; }
}
}