From aad11eac50d83c04a1e11e59f7b52832130edb34 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 9 Aug 2017 15:43:35 +0200 Subject: [PATCH] Fixed a FluidSynth import bug, soundfonts should now be loaded correctly again. --- src/SOUND/midi_fluidsynth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SOUND/midi_fluidsynth.c b/src/SOUND/midi_fluidsynth.c index 307bc0f91..7fdea0bb4 100644 --- a/src/SOUND/midi_fluidsynth.c +++ b/src/SOUND/midi_fluidsynth.c @@ -61,7 +61,7 @@ static dllimp_t fluidsynth_imports[] = { { "fluid_synth_pitch_bend", &f_fluid_synth_pitch_bend }, { "fluid_synth_program_change", &f_fluid_synth_program_change }, { "fluid_synth_sfload", &f_fluid_synth_sfload }, - { "fluid_synth_sfunload", &f_fluid_synth_sfload }, + { "fluid_synth_sfunload", &f_fluid_synth_sfunload }, { "fluid_synth_set_interp_method", &f_fluid_synth_set_interp_method }, { "fluid_synth_set_reverb", &f_fluid_synth_set_reverb }, { "fluid_synth_set_reverb_on", &f_fluid_synth_set_reverb_on },