From c7e3adf446b7784d850d4af4cf6ce65dda7f23d1 Mon Sep 17 00:00:00 2001 From: waltje Date: Tue, 10 Oct 2017 03:24:49 -0400 Subject: [PATCH] For real, this time... --- src/sound/midi_fluidsynth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sound/midi_fluidsynth.c b/src/sound/midi_fluidsynth.c index afd306eb2..e745d6580 100644 --- a/src/sound/midi_fluidsynth.c +++ b/src/sound/midi_fluidsynth.c @@ -9,7 +9,7 @@ #include #include "../config.h" #include "../device.h" -#include "../plat.h" +#include "../ui.h" #include "../win/plat_dynld.h" #include "../win/plat_thread.h" #include "midi.h" @@ -225,7 +225,7 @@ void* fluidsynth_init(device_t *info) fluidsynth_handle = dynld_module("libfluidsynth.dll", fluidsynth_imports); if (fluidsynth_handle == NULL) { - plat_msgbox_error(IDS_2171); + ui_msgbox(MBX_ERROR, (wchar_t *)IDS_2171); return NULL; }