From 01f99031c541142d8d0da2ea33dc62f062e27353 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Sun, 22 May 2022 13:11:14 +0200 Subject: [PATCH] Forgot to initialize nMasterVolume - just added it. --- src/minidexed.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index c434c0a..d331792 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -124,6 +124,8 @@ CMiniDexed::CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt, } #endif + setMasterVolume(1.0); + // BEGIN setup tg_mixer tg_mixer = new AudioStereoMixer(pConfig->GetChunkSize()/2); // END setup tgmixer