mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
- fixed setting of FluidSynth reverb and chorus
This commit is contained in:
parent
d7289f6469
commit
59f649700f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue