[Scummvm-cvs-logs] SF.net SVN: scummvm:[51296] scummvm/trunk

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Mon Jul 26 08:10:48 CEST 2010


Revision: 51296
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51296&view=rev
Author:   eriktorbjorn
Date:     2010-07-26 06:10:47 +0000 (Mon, 26 Jul 2010)

Log Message:
-----------
Janitorial: Fix punctuation in error/warning

Modified Paths:
--------------
    scummvm/trunk/base/main.cpp
    scummvm/trunk/sound/mididrv.cpp

Modified: scummvm/trunk/base/main.cpp
===================================================================
--- scummvm/trunk/base/main.cpp	2010-07-26 06:03:55 UTC (rev 51295)
+++ scummvm/trunk/base/main.cpp	2010-07-26 06:10:47 UTC (rev 51296)
@@ -347,7 +347,7 @@
 	// 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";
 		}
 	}

Modified: scummvm/trunk/sound/mididrv.cpp
===================================================================
--- scummvm/trunk/sound/mididrv.cpp	2010-07-26 06:03:55 UTC (rev 51295)
+++ scummvm/trunk/sound/mididrv.cpp	2010-07-26 06:10:47 UTC (rev 51296)
@@ -261,7 +261,7 @@
 	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();


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list