diff options
author | Eugene Sandulenko | 2017-12-03 20:07:35 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-12-03 23:04:58 +0100 |
commit | 20fb25d58a732a7d6b750595cd7f4d310f5d0b2e (patch) | |
tree | 5ea19291a6838fc49299e85ee287050fef411186 /engines/fullpipe/scenes | |
parent | 26747d0400ae1afebf98fbf49d0d915ab3312118 (diff) | |
download | scummvm-rg350-20fb25d58a732a7d6b750595cd7f4d310f5d0b2e.tar.gz scummvm-rg350-20fb25d58a732a7d6b750595cd7f4d310f5d0b2e.tar.bz2 scummvm-rg350-20fb25d58a732a7d6b750595cd7f4d310f5d0b2e.zip |
FULLPIPE: Renames in ExCommand
Diffstat (limited to 'engines/fullpipe/scenes')
-rw-r--r-- | engines/fullpipe/scenes/scene04.cpp | 4 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene09.cpp | 4 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene11.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene16.cpp | 4 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene25.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene34.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene35.cpp | 2 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene38.cpp | 2 |
8 files changed, 11 insertions, 11 deletions
diff --git a/engines/fullpipe/scenes/scene04.cpp b/engines/fullpipe/scenes/scene04.cpp index 0d27313933..45ada3ea6f 100644 --- a/engines/fullpipe/scenes/scene04.cpp +++ b/engines/fullpipe/scenes/scene04.cpp @@ -518,7 +518,7 @@ void sceneHandler04_gotoLadder(ExCommand *ex) { mq->addExCommandToEnd(ex2); ExCommand *ex3 = new ExCommand(g_fp->_aniMan->_id, 34, 256, 0, 0, 0, 1, 0, 0, 0); - ex3->_field_14 = 256; + ex3->_z = 256; ex3->_messageNum = 0; ex3->_excFlags |= 3; mq->addExCommandToEnd(ex3); @@ -1602,7 +1602,7 @@ int sceneHandler04(ExCommand *ex) { exnew = new ExCommand(0, 35, SND_4_012, 0, 0, 0, 1, 0, 0, 0); } - exnew->_field_14 = 5; + exnew->_z = 5; exnew->_excFlags |= 2; exnew->postMessage(); break; diff --git a/engines/fullpipe/scenes/scene09.cpp b/engines/fullpipe/scenes/scene09.cpp index eab6cf63ca..17dfc4a990 100644 --- a/engines/fullpipe/scenes/scene09.cpp +++ b/engines/fullpipe/scenes/scene09.cpp @@ -404,7 +404,7 @@ void sceneHandler09_hangerStartCycle() { if (g_vars->scene09_intHangerMaxPhase != -1000 && g_vars->scene09_hangers[g_vars->scene09_interactingHanger]->phase != g_vars->scene09_intHangerMaxPhase) { ExCommand *ex = new ExCommand(0, 35, SND_9_019, 0, 0, 0, 1, 0, 0, 0); - ex->_field_14 = 1; + ex->_z = 1; ex->_excFlags |= 2; ex->postMessage(); @@ -555,7 +555,7 @@ int sceneHandler09(ExCommand *cmd) { ExCommand *ex = new ExCommand(0, 35, SND_9_018, 0, 0, 0, 1, 0, 0, 0); - ex->_field_14 = 1; + ex->_z = 1; ex->_excFlags |= 2; ex->postMessage(); } diff --git a/engines/fullpipe/scenes/scene11.cpp b/engines/fullpipe/scenes/scene11.cpp index 6a08677571..7fb158b817 100644 --- a/engines/fullpipe/scenes/scene11.cpp +++ b/engines/fullpipe/scenes/scene11.cpp @@ -316,7 +316,7 @@ void sceneHandler11_jumpFromSwing() { MessageQueue *mq = new MessageQueue(g_fp->_globalMessageQueueList->compact()); ExCommand *ex = new ExCommand(g_fp->_aniMan->_id, 34, 256, 0, 0, 0, 1, 0, 0, 0); - ex->_field_14 = 256; + ex->_z = 256; ex->_messageNum = 0; ex->_excFlags |= 3; mq->addExCommandToEnd(ex); diff --git a/engines/fullpipe/scenes/scene16.cpp b/engines/fullpipe/scenes/scene16.cpp index 04de100318..2441d4ec50 100644 --- a/engines/fullpipe/scenes/scene16.cpp +++ b/engines/fullpipe/scenes/scene16.cpp @@ -262,7 +262,7 @@ void sceneHandler16_drink() { ex = new ExCommand(ANI_MAN, 34, 384, 0, 0, 0, 1, 0, 0, 0); ex->_excFlags |= 3u; - ex->_field_14 = 384; + ex->_z = 384; ex->_messageNum = 0; mq->insertExCommandAt(2, ex); @@ -275,7 +275,7 @@ void sceneHandler16_drink() { ex = new ExCommand(ANI_MAN, 34, 256, 0, 0, 0, 1, 0, 0, 0); ex->_excFlags |= 3u; - ex->_field_14 = 256; + ex->_z = 256; ex->_messageNum = 0; mq->addExCommandToEnd(ex); diff --git a/engines/fullpipe/scenes/scene25.cpp b/engines/fullpipe/scenes/scene25.cpp index 6871f37adb..d3e3b65350 100644 --- a/engines/fullpipe/scenes/scene25.cpp +++ b/engines/fullpipe/scenes/scene25.cpp @@ -489,7 +489,7 @@ void sceneHandler25_walkOnLadder(StaticANIObject *ani, Common::Point *pnt, Messa ex = new ExCommand(ani->_id, 34, 256, 0, 0, 0, 1, 0, 0, 0); - ex->_field_14 = 256; + ex->_z = 256; ex->_messageNum = 0; ex->_excFlags |= 3; diff --git a/engines/fullpipe/scenes/scene34.cpp b/engines/fullpipe/scenes/scene34.cpp index b51715a43d..5856cdddc3 100644 --- a/engines/fullpipe/scenes/scene34.cpp +++ b/engines/fullpipe/scenes/scene34.cpp @@ -180,7 +180,7 @@ void sceneHandler34_fromCactus(ExCommand *cmd) { ex->_messageNum = 0; ex->_excFlags |= 3; - ex->_field_14 = 256; + ex->_z = 256; mq->addExCommandToEnd(ex); ex = cmd->createClone(); diff --git a/engines/fullpipe/scenes/scene35.cpp b/engines/fullpipe/scenes/scene35.cpp index abeffbee7f..b23a6397a7 100644 --- a/engines/fullpipe/scenes/scene35.cpp +++ b/engines/fullpipe/scenes/scene35.cpp @@ -97,7 +97,7 @@ void sceneHandler35_startFlow() { ExCommand *cmd = new ExCommand(g_vars->scene35_bellyInflater->_id, 34, 256, 0, 0, 0, 1, 0, 0, 0); cmd->_excFlags |= 3; - cmd->_field_14 = 256; + cmd->_z = 256; cmd->_messageNum = 0; mq->addExCommandToEnd(cmd); diff --git a/engines/fullpipe/scenes/scene38.cpp b/engines/fullpipe/scenes/scene38.cpp index 3bcbabe452..3ff3558802 100644 --- a/engines/fullpipe/scenes/scene38.cpp +++ b/engines/fullpipe/scenes/scene38.cpp @@ -44,7 +44,7 @@ void scene38_setBottleState(Scene *sc) { ex = sc->getMessageQueueById(QU_SC38_SHOWBOTTLE)->getExCommandByIndex(0); g_vars->scene38_bottle->setOXY(ex->_x, ex->_y); - g_vars->scene38_bottle->_priority = ex->_field_14; + g_vars->scene38_bottle->_priority = ex->_z; g_fp->setObjectState(sO_Bottle_38, g_fp->getObjectEnumState(sO_Bottle_38, sO_Blocked)); } |