From 59f649700ff6d6c368290bc24acbb55122925dd2 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 7 Oct 2019 12:20:56 +0300 Subject: [PATCH] - fixed setting of FluidSynth reverb and chorus --- libraries/zmusic/zmusic/configuration.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/zmusic/zmusic/configuration.cpp b/libraries/zmusic/zmusic/configuration.cpp index 9fcc3fae2..ded3ea8c6 100644 --- a/libraries/zmusic/zmusic/configuration.cpp +++ b/libraries/zmusic/zmusic/configuration.cpp @@ -181,14 +181,14 @@ bool ChangeMusicSetting(ZMusic::EIntConfigKey key, MusInfo *currSong, int value, case fluid_reverb: if (currSong != NULL) - currSong->ChangeSettingInt("fluidsynth.synth.reverb", value); + currSong->ChangeSettingInt("fluidsynth.synth.reverb.active", value); ChangeAndReturn(fluidConfig.fluid_reverb, value, pRealValue); return false; case fluid_chorus: if (currSong != NULL) - currSong->ChangeSettingInt("fluidsynth.synth.chorus", value); + currSong->ChangeSettingInt("fluidsynth.synth.chorus.active", value); ChangeAndReturn(fluidConfig.fluid_chorus, value, pRealValue); return false;