[Scummvm-cvs-logs] scummvm master -> 03911e65050127fc53f7d779987147876e90fe36

sev- sev at scummvm.org
Thu Sep 26 22:18:26 CEST 2013


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:
03911e6505 SWORD25: Fix copy-paste error. CID 1004130


Commit: 03911e65050127fc53f7d779987147876e90fe36
    https://github.com/scummvm/scummvm/commit/03911e65050127fc53f7d779987147876e90fe36
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-09-26T12:58:46-07:00

Commit Message:
SWORD25: Fix copy-paste error. CID 1004130

Changed paths:
    engines/sword25/gfx/animationresource.cpp



diff --git a/engines/sword25/gfx/animationresource.cpp b/engines/sword25/gfx/animationresource.cpp
index 621e20a..8c09a54 100644
--- a/engines/sword25/gfx/animationresource.cpp
+++ b/engines/sword25/gfx/animationresource.cpp
@@ -188,7 +188,7 @@ bool AnimationResource::parserCallback_frame(ParserNode *node) {
 
 	Common::String flipHString = node->values["fliph"];
 	if (!flipHString.empty()) {
-		if (!parseBooleanKey(flipVString, frame.flipV)) {
+		if (!parseBooleanKey(flipHString, frame.flipH)) {
 			warning("Illegal fliph value (\"%s\") in <frame> tag in \"%s\". Assuming default (\"false\").",
 			                 flipHString.c_str(), getFileName().c_str());
 			frame.flipH = false;






More information about the Scummvm-git-logs mailing list