Skip to content

Commit

Permalink
Sync
Browse files Browse the repository at this point in the history
  • Loading branch information
diizy committed Nov 18, 2014
1 parent ba05b75 commit 815a70a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/FxMixer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ void FxChannel::doProcessing()
m_fxChain.startRunning();
}

m_stillRunning = m_fxChain.processAudioBuffer( _buf, fpp, m_hasInput );
m_stillRunning = m_fxChain.processAudioBuffer( m_buffer, fpp, m_hasInput );

m_peakLeft = qMax( m_peakLeft, engine::mixer()->peakValueLeft( _buf, fpp ) * v );
m_peakRight = qMax( m_peakRight, engine::mixer()->peakValueRight( _buf, fpp ) * v );
m_peakLeft = qMax( m_peakLeft, engine::mixer()->peakValueLeft( m_buffer, fpp ) * v );
m_peakRight = qMax( m_peakRight, engine::mixer()->peakValueRight( m_buffer, fpp ) * v );
}
else
{
Expand Down

0 comments on commit 815a70a

Please sign in to comment.