[Scummvm-git-logs] scummvm branch-2-2 -> 27d598cb8de1661435555c23e98f6532f36b36cd
criezy
criezy at scummvm.org
Mon Aug 31 15:11:50 UTC 2020
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:
27d598cb8d I18N: Consistency fix for SoundFont in messages
Commit: 27d598cb8de1661435555c23e98f6532f36b36cd
https://github.com/scummvm/scummvm/commit/27d598cb8de1661435555c23e98f6532f36b36cd
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2020-08-31T16:10:57+01:00
Commit Message:
I18N: Consistency fix for SoundFont in messages
Changed paths:
audio/softsynth/fluidsynth.cpp
backends/midi/coreaudio.cpp
diff --git a/audio/softsynth/fluidsynth.cpp b/audio/softsynth/fluidsynth.cpp
index 393ca8b842..5efa006253 100644
--- a/audio/softsynth/fluidsynth.cpp
+++ b/audio/softsynth/fluidsynth.cpp
@@ -274,7 +274,7 @@ int MidiDriver_FluidSynth::open() {
#endif
if (_soundFont == -1) {
- GUI::MessageDialog dialog(_("FluidSynth: Failed loading custom sound font '%s'. Music is off."), soundfont);
+ GUI::MessageDialog dialog(_("FluidSynth: Failed loading custom SoundFont '%s'. Music is off."), soundfont);
dialog.runModal();
return MERR_DEVICE_NOT_AVAILABLE;
}
diff --git a/backends/midi/coreaudio.cpp b/backends/midi/coreaudio.cpp
index 7e6c374361..e542cee73c 100644
--- a/backends/midi/coreaudio.cpp
+++ b/backends/midi/coreaudio.cpp
@@ -265,7 +265,7 @@ void MidiDriver_CORE::loadSoundFont(const char *soundfont) {
#endif // USE_DEPRECATED_COREAUDIO_API
if (err != noErr)
- error("Failed loading custom sound font '%s' (error %ld)", soundfont, (long)err);
+ error("Failed loading custom SoundFont '%s' (error %ld)", soundfont, (long)err);
}
void MidiDriver_CORE::close() {
More information about the Scummvm-git-logs
mailing list