From fcafaea364e36caeeb97630c00a889d5fbc44d3e Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 4 Apr 2022 05:44:21 +0200 Subject: [PATCH] Set diffusion default to 65 Comment in the source code says: "Diffusion (lower settings will make the reverb tail more "echoey", optimal value 0.65)" https://github.com/probonopd/MiniDexed/issues/66#issuecomment-1086931477 --- src/minidexed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 8e0e86d..b462b69 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -119,7 +119,7 @@ CMiniDexed::CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt, SetParameter (ParameterReverbHighDamp, 50); SetParameter (ParameterReverbLowDamp, 50); SetParameter (ParameterReverbLowPass, 30); - SetParameter (ParameterReverbDiffusion, 20); + SetParameter (ParameterReverbDiffusion, 65); SetParameter (ParameterReverbSend, 80); // END setup reverb };