From 198975a00705639a3a35c40acafe5ee208999de8 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 23 Aug 2021 16:26:31 +0200 Subject: [PATCH] AUDIO: Fix message format --- audio/softsynth/fluidsynth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/softsynth/fluidsynth.cpp b/audio/softsynth/fluidsynth.cpp index bda2a540817..1945a8e6cbc 100644 --- a/audio/softsynth/fluidsynth.cpp +++ b/audio/softsynth/fluidsynth.cpp @@ -365,7 +365,7 @@ int MidiDriver_FluidSynth::open() { #endif if (_soundFont == -1) { - GUI::MessageDialog dialog(_("FluidSynth: Failed loading custom SoundFont '%s'. Music is off."), soundfont); + GUI::MessageDialog dialog(Common::U32String::format(_("FluidSynth: Failed loading custom SoundFont '%s'. Music is off."), soundfont)); dialog.runModal(); return MERR_DEVICE_NOT_AVAILABLE; }