Remove a completely useless warning

This commit is contained in:
Hannu Haahti
2016-02-25 00:38:25 +02:00
parent b55b1ab059
commit 1598343b86

View File

@@ -223,20 +223,6 @@ bool EffectChain::processAudioBuffer( sampleFrame * _buf, const fpp_t _frames, b
MixHelpers::sanitize( _buf, _frames );
}
}
#ifdef LMMS_DEBUG
for( int f = 0; f < _frames; ++f )
{
if( fabs( _buf[f][0] ) > 5 || fabs( _buf[f][1] ) > 5 )
{
it = m_effects.end()-1;
printf( "numerical overflow after processing "
"plugin \"%s\"\n", ( *it )->
descriptor()->name);
break;
}
}
#endif
}
return moreEffects;