diff options
author | Eugene Sandulenko | 2015-09-20 02:43:04 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2015-10-17 12:45:40 +0200 |
commit | fc16d5eb0312a7dcb01954b147250c294c1f4678 (patch) | |
tree | 2ccadd752f9ba60014b8a9ea66d53a05291b5e35 /engines/fullpipe | |
parent | 9b95f9f9c14dcd74d74c44d5aef510bff6dc7a20 (diff) | |
download | scummvm-rg350-fc16d5eb0312a7dcb01954b147250c294c1f4678.tar.gz scummvm-rg350-fc16d5eb0312a7dcb01954b147250c294c1f4678.tar.bz2 scummvm-rg350-fc16d5eb0312a7dcb01954b147250c294c1f4678.zip |
FULLPIPE: More renames
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/motion.cpp | 11 | ||||
-rw-r--r-- | engines/fullpipe/motion.h | 7 |
2 files changed, 8 insertions, 10 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index ba009b61b3..9281d9654b 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -195,7 +195,7 @@ MessageQueue *MctlCompound::startMove(StaticANIObject *ani, int sourceX, int sou if (!cp) return 0; - MessageQueue *mq = _motionControllers[idx]->_motionControllerObj->doWalkTo(ani, cp->_connectionX, cp->_connectionY, 1, cp->_field_14); + MessageQueue *mq = _motionControllers[idx]->_motionControllerObj->doWalkTo(ani, cp->_connectionX, cp->_connectionY, 1, cp->_mctlmirror); if (!mq) return 0; @@ -264,7 +264,7 @@ MessageQueue *MctlCompound::doWalkTo(StaticANIObject *subj, int xpos, int ypos, if (!closestP) return 0; - MessageQueue *mq = _motionControllers[match1]->_motionControllerObj->doWalkTo(subj, closestP->_connectionX, closestP->_connectionY, 1, closestP->_field_14); + MessageQueue *mq = _motionControllers[match1]->_motionControllerObj->doWalkTo(subj, closestP->_connectionX, closestP->_connectionY, 1, closestP->_mctlmirror); ExCommand *ex; @@ -669,10 +669,9 @@ void MctlCompound::replaceNodeX(int from, int to) { MctlConnectionPoint::MctlConnectionPoint() { _connectionX = 0; _connectionY = 0; - _field_C = 0; - _field_10 = 0; - _field_14 = 0; - _field_16 = 0; + _mctlflags = 0; + _mctlstatic = 0; + _mctlmirror = 0; _messageQueueObj = 0; _motionControllerObj = 0; } diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h index a5e2fc4bda..a1fe27658b 100644 --- a/engines/fullpipe/motion.h +++ b/engines/fullpipe/motion.h @@ -404,10 +404,9 @@ class MctlConnectionPoint : public CObject { public: int _connectionX; int _connectionY; - int _field_C; - int _field_10; - int16 _field_14; - int16 _field_16; + int _mctlflags; + int _mctlstatic; + int16 _mctlmirror; MessageQueue *_messageQueueObj; int _motionControllerObj; |