[Scummvm-cvs-logs] scummvm master -> d878779453ec416e867805ff119bb16c1fd3c1ac

sev- sev at scummvm.org
Sun Apr 21 15:50:37 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:
d878779453 GUI: Fix previous commit


Commit: d878779453ec416e867805ff119bb16c1fd3c1ac
    https://github.com/scummvm/scummvm/commit/d878779453ec416e867805ff119bb16c1fd3c1ac
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-04-21T06:49:48-07:00

Commit Message:
GUI: Fix previous commit

Changed paths:
    gui/ThemeParser.cpp



diff --git a/gui/ThemeParser.cpp b/gui/ThemeParser.cpp
index 418ec2c..9b45260 100644
--- a/gui/ThemeParser.cpp
+++ b/gui/ThemeParser.cpp
@@ -691,8 +691,7 @@ bool ThemeParser::parserCallback_layout(ParserNode *node) {
 			return false;
 	}
 
-	if (!Common::parseBool(node->values["center"], center))
-		return false;
+	(void)Common::parseBool(node->values["center"], center);
 
 	if (node->values["type"] == "vertical")
 		_theme->getEvaluator()->addLayout(GUI::ThemeLayout::kLayoutVertical, spacing, center);






More information about the Scummvm-git-logs mailing list