diff --git a/include/Oscillator.h b/include/Oscillator.h index ea0227bd0e9..e7eccea50ca 100644 --- a/include/Oscillator.h +++ b/include/Oscillator.h @@ -163,11 +163,7 @@ class LMMS_EXPORT Oscillator static inline sample_t noiseSample( const float ) { - // Precise implementation -// return 1.0f - rand() * 2.0f / RAND_MAX; - - // Fast implementation - return 1.0f - fast_rand() * 2.0f / FAST_RAND_MAX; + return 1.0f - rand() * 2.0f / RAND_MAX; } static sample_t userWaveSample(const SampleBuffer* buffer, const float sample)