[Scummvm-cvs-logs] scummvm master -> 5c284a4edeb3f66cce6ac65ec1542e535bbd7476

sev- sev at scummvm.org
Sat Nov 9 00:46:15 CET 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:
5c284a4ede FULLPIPE: More work on MovGraph2::buildMovInfo1MessageQueue()


Commit: 5c284a4edeb3f66cce6ac65ec1542e535bbd7476
    https://github.com/scummvm/scummvm/commit/5c284a4edeb3f66cce6ac65ec1542e535bbd7476
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-11-08T15:45:31-08:00

Commit Message:
FULLPIPE: More work on MovGraph2::buildMovInfo1MessageQueue()

Changed paths:
    engines/fullpipe/motion.cpp



diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp
index 49987f0..2c61330 100644
--- a/engines/fullpipe/motion.cpp
+++ b/engines/fullpipe/motion.cpp
@@ -697,13 +697,13 @@ MessageQueue *MovGraph2::buildMovInfo1MessageQueue(MovInfo1 *movInfo) {
 				 || v19 == -1
 				 || v9[i + 1].y == -1) {
 
-				v28 = new ExCommand(_items[1][movInfo->field_0].objectId, 1, v15->objectId, 0, 0, 0, 1, 0, 0, 0);
+				ExCommand *ex = new ExCommand(_items[1][movInfo->field_0].objectId, 1, v15->objectId, 0, 0, 0, 1, 0, 0, 0);
 
-				v28->_excFlags |= 2u;
-				v28->_keyCode = _items[1][movInfo->field_0].obj->GameObject.okeyCode;
-				v28->_field_24 = 1;
-				v28->_field_14 = -1;
-				mq->_exCommands.push_back(v28);
+				ex->_excFlags |= 2u;
+				ex->_keyCode = _items[1][movInfo->field_0].obj->GameObject.okeyCode;
+				ex->_field_24 = 1;
+				ex->_field_14 = -1;
+				mq->_exCommands.push_back(ex);
 
 				curX += v15->subItems[0].staticsId2;
 				curY += v15->subItems[0].staticsId1;






More information about the Scummvm-git-logs mailing list