From 913947c2477264860339596128eae5b2a11c20e8 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 1 Jun 2014 11:24:14 +0300 Subject: FULLPIPE: Rename class variable to avoid confusion --- engines/fullpipe/motion.cpp | 8 ++++---- engines/fullpipe/motion.h | 2 +- engines/fullpipe/scenes/scene04.cpp | 16 ++++++++-------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index bea9bcdc10..b96d2d8bef 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -337,7 +337,7 @@ void MctlLadder::addObject(StaticANIObject *obj) { if (initMovement(obj, movement)) { _mgm.addItem(obj->_id); - _movements.push_back(movement); + _ladmovements.push_back(movement); } else { delete movement; } @@ -347,7 +347,7 @@ void MctlLadder::addObject(StaticANIObject *obj) { int MctlLadder::findObjectPos(StaticANIObject *obj) { int res = -1; - for (Common::List::iterator it = _movements.begin(); it != _movements.end(); ++it, ++res) + for (Common::List::iterator it = _ladmovements.begin(); it != _ladmovements.end(); ++it, ++res) if ((*it)->objId == obj->_id) break; @@ -401,12 +401,12 @@ bool MctlLadder::initMovement(StaticANIObject *ani, MctlLadderMovement *movement void MctlLadder::freeItems() { _mgm.clear(); - for (Common::List::iterator it = _movements.begin(); it != _movements.end(); ++it) { + for (Common::List::iterator it = _ladmovements.begin(); it != _ladmovements.end(); ++it) { delete (*it)->movVars; delete [] (*it)->staticIds; } - _movements.clear(); + _ladmovements.clear(); } MessageQueue *MctlLadder::method34(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId) { diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h index 2b40791340..b7e96f61be 100644 --- a/engines/fullpipe/motion.h +++ b/engines/fullpipe/motion.h @@ -210,7 +210,7 @@ public: int _height; int _ladder_field_20; int _ladder_field_24; - Common::List _movements; + Common::List _ladmovements; MGM _mgm; public: diff --git a/engines/fullpipe/scenes/scene04.cpp b/engines/fullpipe/scenes/scene04.cpp index b47553ef6f..0a69335bea 100644 --- a/engines/fullpipe/scenes/scene04.cpp +++ b/engines/fullpipe/scenes/scene04.cpp @@ -324,15 +324,15 @@ void sceneHandler04_walkClimbLadder(ExCommand *ex) { g_vars->scene04_ladder->addObject(g_fp->_aniMan); if (g_vars->scene04_soundPlaying) { - g_vars->scene04_ladder->_movements.front()->movVars->varUpStart = MV_MAN_STARTLADDER2; - g_vars->scene04_ladder->_movements.front()->movVars->varUpGo = MV_MAN_GOLADDER2; - g_vars->scene04_ladder->_movements.front()->movVars->varUpStop = MV_MAN_STOPLADDER2; - g_vars->scene04_ladder->_movements.front()->staticIds[2] = ST_MAN_GOLADDER2; + g_vars->scene04_ladder->_ladmovements.front()->movVars->varUpStart = MV_MAN_STARTLADDER2; + g_vars->scene04_ladder->_ladmovements.front()->movVars->varUpGo = MV_MAN_GOLADDER2; + g_vars->scene04_ladder->_ladmovements.front()->movVars->varUpStop = MV_MAN_STOPLADDER2; + g_vars->scene04_ladder->_ladmovements.front()->staticIds[2] = ST_MAN_GOLADDER2; } else { - g_vars->scene04_ladder->_movements.front()->movVars->varUpStart = MV_MAN_STARTLADDER; - g_vars->scene04_ladder->_movements.front()->movVars->varUpGo = MV_MAN_GOLADDER; - g_vars->scene04_ladder->_movements.front()->movVars->varUpStop = MV_MAN_STOPLADDER; - g_vars->scene04_ladder->_movements.front()->staticIds[2] = ST_MAN_GOLADDER; + g_vars->scene04_ladder->_ladmovements.front()->movVars->varUpStart = MV_MAN_STARTLADDER; + g_vars->scene04_ladder->_ladmovements.front()->movVars->varUpGo = MV_MAN_GOLADDER; + g_vars->scene04_ladder->_ladmovements.front()->movVars->varUpStop = MV_MAN_STOPLADDER; + g_vars->scene04_ladder->_ladmovements.front()->staticIds[2] = ST_MAN_GOLADDER; } g_fp->_aniMan->_priority = 12; -- cgit v1.2.3