diff options
author | Torbjörn Andersson | 2010-07-26 06:10:47 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-07-26 06:10:47 +0000 |
commit | 02a2f084080ba92f85e937dac5618bbda19e4ec4 (patch) | |
tree | d285051a7116b8dd3abd5c6b1d08f7ddfc1c7ba7 | |
parent | 27ce375a9526effe904b1d2c36f862043c516fd3 (diff) | |
download | scummvm-rg350-02a2f084080ba92f85e937dac5618bbda19e4ec4.tar.gz scummvm-rg350-02a2f084080ba92f85e937dac5618bbda19e4ec4.tar.bz2 scummvm-rg350-02a2f084080ba92f85e937dac5618bbda19e4ec4.zip |
Janitorial: Fix punctuation in error/warning
svn-id: r51296
-rw-r--r-- | base/main.cpp | 2 | ||||
-rw-r--r-- | sound/mididrv.cpp | 2 |
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(); |