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

wjp wjp at usecode.org
Sat Jan 4 16:28:50 CET 2014


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:
b187acbf9e FULLPIPE: Fix build


Commit: b187acbf9ea4d9a81a39ebbf3a99f2db36155067
    https://github.com/scummvm/scummvm/commit/b187acbf9ea4d9a81a39ebbf3a99f2db36155067
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2014-01-04T07:28:17-08:00

Commit Message:
FULLPIPE: Fix build

Changed paths:
    engines/fullpipe/motion.cpp
    engines/fullpipe/scenes/scene22.cpp



diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp
index b7af4ca..8e5e0c0 100644
--- a/engines/fullpipe/motion.cpp
+++ b/engines/fullpipe/motion.cpp
@@ -210,7 +210,7 @@ MessageQueue *MctlCompound::doWalkTo(StaticANIObject *subj, int xpos, int ypos,
 
 	if (mq) {
 		for (uint i = 0; i < closestP->_messageQueueObj->getCount(); i++) {
-			ex = closestP->_messageQueueObj->getExCommandByIndex(i)->createClone()
+			ex = closestP->_messageQueueObj->getExCommandByIndex(i)->createClone();
 			ex->_excFlags |= 2;
 			mq->addExCommandToEnd(ex);
 		}
diff --git a/engines/fullpipe/scenes/scene22.cpp b/engines/fullpipe/scenes/scene22.cpp
index d7ac6d4..2f8bb26 100644
--- a/engines/fullpipe/scenes/scene22.cpp
+++ b/engines/fullpipe/scenes/scene22.cpp
@@ -196,7 +196,7 @@ void sceneHandler22_stoolLogic(ExCommand *cmd) {
 				if (!mq)
 					return;
 
-				mq->addExCommandToEnd(cmd->createClone));
+				mq->addExCommandToEnd(cmd->createClone());
 
 				postExCommand(g_fp->_aniMan->_id, 2, 841, 449, 0, -1);
 				return;






More information about the Scummvm-git-logs mailing list