mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 23:33:00 +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:
|
case fluid_reverb:
|
||||||
if (currSong != NULL)
|
if (currSong != NULL)
|
||||||
currSong->ChangeSettingInt("fluidsynth.synth.reverb", value);
|
currSong->ChangeSettingInt("fluidsynth.synth.reverb.active", value);
|
||||||
|
|
||||||
ChangeAndReturn(fluidConfig.fluid_reverb, value, pRealValue);
|
ChangeAndReturn(fluidConfig.fluid_reverb, value, pRealValue);
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
case fluid_chorus:
|
case fluid_chorus:
|
||||||
if (currSong != NULL)
|
if (currSong != NULL)
|
||||||
currSong->ChangeSettingInt("fluidsynth.synth.chorus", value);
|
currSong->ChangeSettingInt("fluidsynth.synth.chorus.active", value);
|
||||||
|
|
||||||
ChangeAndReturn(fluidConfig.fluid_chorus, value, pRealValue);
|
ChangeAndReturn(fluidConfig.fluid_chorus, value, pRealValue);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue