mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
Merge pull request #715 from dudola/patch-1
GUI: Remove dummy FluidSynth Settings button from Edit Game
This commit is contained in:
commit
5580072fe3
@ -870,10 +870,6 @@ void OptionsDialog::addMIDIControls(GuiObject *boss, const Common::String &prefi
|
||||
_midiGainSlider->setMaxValue(1000);
|
||||
_midiGainLabel = new StaticTextWidget(boss, prefix + "mcMidiGainLabel", "1.00");
|
||||
|
||||
#ifdef USE_FLUIDSYNTH
|
||||
new ButtonWidget(boss, prefix + "mcFluidSynthSettings", _("FluidSynth Settings"), 0, kFluidSynthSettingsCmd);
|
||||
#endif
|
||||
|
||||
_enableMIDISettings = true;
|
||||
}
|
||||
|
||||
@ -1111,6 +1107,10 @@ GlobalOptionsDialog::GlobalOptionsDialog()
|
||||
_midiTabId = tab->addTab(_("MIDI"));
|
||||
addMIDIControls(tab, "GlobalOptions_MIDI.");
|
||||
|
||||
#ifdef USE_FLUIDSYNTH
|
||||
new ButtonWidget(tab, "GlobalOptions_MIDI.mcFluidSynthSettings", _("FluidSynth Settings"), 0, kFluidSynthSettingsCmd);
|
||||
#endif
|
||||
|
||||
//
|
||||
// 4) The MT-32 tab
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user