Revert "FxMixer: no need to check for master channel"

This reverts commit 1adc8f8ba3.

Closes #279.
This commit is contained in:
Tobias Doerffel
2014-02-23 18:31:08 +01:00
parent 4903190759
commit 05e4cdaaef

View File

@@ -107,7 +107,7 @@ void FxMixer::mixToChannel( const sampleFrame * _buf, fx_ch_t _ch )
void FxMixer::processChannel( fx_ch_t _ch, sampleFrame * _buf )
{
if( m_fxChannels[_ch]->m_muteModel.value() == false &&
( m_fxChannels[_ch]->m_used || m_fxChannels[_ch]->m_stillRunning ) )
( m_fxChannels[_ch]->m_used || m_fxChannels[_ch]->m_stillRunning || _ch == 0 ) )
{
if( _buf == NULL )
{