mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-16 10:46:39 -04:00
Fix regression from 85ed63b
This commit is contained in:
@@ -98,8 +98,8 @@ bool BassBoosterEffect::processAudioBuffer( sampleFrame* buf, const fpp_t frames
|
||||
gain = gainBuffer->value( f );
|
||||
}
|
||||
//float gain = gainBuffer ? gainBuffer[f] : gain;
|
||||
m_bbFX.leftFX().setGain( const_gain );
|
||||
m_bbFX.rightFX().setGain( const_gain);
|
||||
m_bbFX.leftFX().setGain( gain );
|
||||
m_bbFX.rightFX().setGain( gain);
|
||||
outSum += buf[f][0]*buf[f][0] + buf[f][1]*buf[f][1];
|
||||
|
||||
sample_t s[2] = { buf[f][0], buf[f][1] };
|
||||
|
||||
Reference in New Issue
Block a user