[Scummvm-git-logs] scummvm master -> f3cfe11ee6cbbfca47c365ffa93442824319355e
criezy
criezy at scummvm.org
Mon Aug 31 15:36:33 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:
f3cfe11ee6 I18N: Consistency fix for SoundFont in messages
Commit: f3cfe11ee6cbbfca47c365ffa93442824319355e
https://github.com/scummvm/scummvm/commit/f3cfe11ee6cbbfca47c365ffa93442824319355e
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2020-08-31T16:35:56+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