[Scummvm-cvs-logs] scummvm master -> 9b43822a424606f9ba4e8c924ed831bc1bdd6aae

fuzzie fuzzie at fuzzie.org
Mon May 23 10:55:14 CEST 2011


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:
9b43822a42 SWORD25: Fix error string parameter


Commit: 9b43822a424606f9ba4e8c924ed831bc1bdd6aae
    https://github.com/scummvm/scummvm/commit/9b43822a424606f9ba4e8c924ed831bc1bdd6aae
Author: Alyssa Milburn (fuzzie at fuzzie.org)
Date: 2011-05-23T01:52:53-07:00

Commit Message:
SWORD25: Fix error string parameter

Changed paths:
    engines/sword25/util/lua/scummvm_file.cpp



diff --git a/engines/sword25/util/lua/scummvm_file.cpp b/engines/sword25/util/lua/scummvm_file.cpp
index 2b7ac6d..98fc127 100644
--- a/engines/sword25/util/lua/scummvm_file.cpp
+++ b/engines/sword25/util/lua/scummvm_file.cpp
@@ -171,7 +171,7 @@ Common::String Sword25FileProxy::getLanguage() {
 	case Common::RU_RUS:
 		return "ru";
 	default:
-		error("Unknown language '%s' encountered", ConfMan.get("language"));
+		error("Unknown language '%s' encountered", ConfMan.get("language").c_str());
 		break;
 	}
 }






More information about the Scummvm-git-logs mailing list