From 90ba1149532b5f2607efccccb16f1e588884518c Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 3 May 2025 17:05:55 +0200 Subject: [PATCH] Fix click/Pop sound on startup Closes #908 As suggested by @soyersoyer in https://github.com/probonopd/MiniDexed/issues/908#issuecomment-2848657586 Thanks @soyersoyer --- src/minidexed.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 4a4ce46..14df08d 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -1414,6 +1414,8 @@ void CMiniDexed::ProcessSound (void) // END create SampleBuffer for holding audio data // get the mix of all TGs + arm_fill_f32(0.0f, SampleBuffer[indexL], nFrames); + arm_fill_f32(0.0f, SampleBuffer[indexR], nFrames); tg_mixer->getMix(SampleBuffer[indexL], SampleBuffer[indexR]); // BEGIN adding reverb