decreased minimal gate from 0.0001f to 0.00001f as it turned out that some effects were cut off with previous value

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@824 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-04-01 00:29:46 +00:00
parent 52d3b70be2
commit fbb936f726
2 changed files with 2 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ bool FASTCALL bassBoosterEffect::processAudioBuffer( surroundSampleFrame * _buf,
}
}
if( out_sum <= getGate()+0.0001f )
if( out_sum <= getGate()+0.00001f )
{
incrementBufferCount();
if( getBufferCount() > getTimeout() )

View File

@@ -439,7 +439,7 @@ bool FASTCALL ladspaEffect::processAudioBuffer( surroundSampleFrame * _buf,
// Check whether we need to continue processing input. Restart the
// counter if the threshold has been exceeded.
if( out_sum <= getGate()+0.0001f )
if( out_sum <= getGate()+0.00001f )
{
incrementBufferCount();
if( getBufferCount() > getTimeout() )