[Scummvm-cvs-logs] scummvm master -> 3e859768770a0b385e21c4528cd546b33ed9a55d

sev- sev at scummvm.org
Sat Nov 30 23:51:47 CET 2013


This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5aadc4468f FULLPIPE: Fix wrong condition check. CID 1133710, 1133711
ecf8f282d4 FULLPIPE: Initialize class variables. CID 1063200
3e85976877 GRAPHICS: Initialize variable. CID 1133708


Commit: 5aadc4468f9d9d05585ac0b05fc3e68e32f903c2
    https://github.com/scummvm/scummvm/commit/5aadc4468f9d9d05585ac0b05fc3e68e32f903c2
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-11-30T14:51:09-08:00

Commit Message:
FULLPIPE: Fix wrong condition check. CID 1133710, 1133711

Changed paths:
    engines/fullpipe/motion.cpp



diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp
index 280a7c2..f67011a 100644
--- a/engines/fullpipe/motion.cpp
+++ b/engines/fullpipe/motion.cpp
@@ -765,7 +765,7 @@ MessageQueue *MovGraph2::buildMovInfo1MessageQueue(MovInfo1 *movInfo) {
 
 			MessageQueue *mq2 = genMovement(&movinfo);
 
-			if (mq2) {
+			if (!mq2) {
 				delete mq;
 				return 0;
 			}


Commit: ecf8f282d452081f1e6fce7e4518a1363ec30c7b
    https://github.com/scummvm/scummvm/commit/ecf8f282d452081f1e6fce7e4518a1363ec30c7b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-11-30T14:51:09-08:00

Commit Message:
FULLPIPE: Initialize class variables. CID 1063200

Changed paths:
    engines/fullpipe/scenes.cpp



diff --git a/engines/fullpipe/scenes.cpp b/engines/fullpipe/scenes.cpp
index 9d5d168..a0f90af 100644
--- a/engines/fullpipe/scenes.cpp
+++ b/engines/fullpipe/scenes.cpp
@@ -76,6 +76,9 @@ Vars::Vars() {
 	scene04_sceneClickX = 0;
 	scene04_sceneClickY = 0;
 
+	scene04_dudePosX = 0;
+	scene04_dudePosY = 0;
+
 	scene04_var01 = 0;
 	scene04_var02 = 0;
 	scene04_var04 = 0;


Commit: 3e859768770a0b385e21c4528cd546b33ed9a55d
    https://github.com/scummvm/scummvm/commit/3e859768770a0b385e21c4528cd546b33ed9a55d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-11-30T14:51:09-08:00

Commit Message:
GRAPHICS: Initialize variable. CID 1133708

Changed paths:
    graphics/fonts/ttf.cpp



diff --git a/graphics/fonts/ttf.cpp b/graphics/fonts/ttf.cpp
index be3cd94..93f119f 100644
--- a/graphics/fonts/ttf.cpp
+++ b/graphics/fonts/ttf.cpp
@@ -141,7 +141,7 @@ private:
 
 TTFFont::TTFFont()
     : _initialized(false), _face(), _ttfFile(0), _size(0), _width(0), _height(0), _ascent(0),
-      _descent(0), _glyphs(), _monochrome(false), _hasKerning(false) {
+      _descent(0), _glyphs(), _monochrome(false), _hasKerning(false), _allowLateCaching(false) {
 }
 
 TTFFont::~TTFFont() {






More information about the Scummvm-git-logs mailing list