[Scummvm-git-logs] scummvm master -> 198975a00705639a3a35c40acafe5ee208999de8

sev- sev at scummvm.org
Mon Aug 23 14:26:49 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
198975a007 AUDIO: Fix message format


Commit: 198975a00705639a3a35c40acafe5ee208999de8
    https://github.com/scummvm/scummvm/commit/198975a00705639a3a35c40acafe5ee208999de8
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-08-23T16:26:31+02:00

Commit Message:
AUDIO: Fix message format

Changed paths:
    audio/softsynth/fluidsynth.cpp


diff --git a/audio/softsynth/fluidsynth.cpp b/audio/softsynth/fluidsynth.cpp
index bda2a54081..1945a8e6cb 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;
 	}




More information about the Scummvm-git-logs mailing list