diff --git a/plugin/module.cpp b/plugin/module.cpp index c174ec9..17d7c88 100644 --- a/plugin/module.cpp +++ b/plugin/module.cpp @@ -46,7 +46,7 @@ void Module::genNoise() { for (uint32_t i = 0; i < bufferSize; i++) { noiseRNG *= 0x8088405; noiseRNG++; - noiseBuf[i] = 2 - (noiseRNG & 0xffff) / 16384.0f; + noiseBuf[i] = 1 - (noiseRNG & 0xffff) / 32768.0f; } }