aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base/main.cpp2
-rw-r--r--sound/mididrv.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/base/main.cpp b/base/main.cpp
index d40c912bf8..e651456ace 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -347,7 +347,7 @@ extern "C" int scummvm_main(int argc, const char * const argv[]) {
// On the other hand we cannot load the plugins before we know the file paths (in case of external plugins).
if (settings.contains("music-driver")) {
if (MidiDriver::getMusicType(MidiDriver::getDeviceHandle(settings["music-driver"])) == MT_INVALID) {
- warning("Unrecognized music driver '%s'. Switching to default device.", settings["music-driver"].c_str());
+ warning("Unrecognized music driver '%s'. Switching to default device", settings["music-driver"].c_str());
settings["music-driver"] = "auto";
}
}
diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp
index 8dc165c3d6..893b873a35 100644
--- a/sound/mididrv.cpp
+++ b/sound/mididrv.cpp
@@ -261,7 +261,7 @@ MidiDriver::DeviceHandle MidiDriver::getDeviceHandle(const Common::String &ident
const MusicPlugin::List p = MusicMan.getPlugins();
if (p.begin() == p.end())
- error("Music plugins must be loaded prior to calling this method.");
+ error("Music plugins must be loaded prior to calling this method");
for (MusicPlugin::List::const_iterator m = p.begin(); m != p.end(); m++) {
MusicDevices i = (**m)->getDevices();