aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/inventory.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2017-12-03 20:07:35 +0100
committerEugene Sandulenko2017-12-03 23:04:58 +0100
commit20fb25d58a732a7d6b750595cd7f4d310f5d0b2e (patch)
tree5ea19291a6838fc49299e85ee287050fef411186 /engines/fullpipe/inventory.cpp
parent26747d0400ae1afebf98fbf49d0d915ab3312118 (diff)
downloadscummvm-rg350-20fb25d58a732a7d6b750595cd7f4d310f5d0b2e.tar.gz
scummvm-rg350-20fb25d58a732a7d6b750595cd7f4d310f5d0b2e.tar.bz2
scummvm-rg350-20fb25d58a732a7d6b750595cd7f4d310f5d0b2e.zip
FULLPIPE: Renames in ExCommand
Diffstat (limited to 'engines/fullpipe/inventory.cpp')
-rw-r--r--engines/fullpipe/inventory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/inventory.cpp b/engines/fullpipe/inventory.cpp
index bba1284ee6..bf3ff1ebf4 100644
--- a/engines/fullpipe/inventory.cpp
+++ b/engines/fullpipe/inventory.cpp
@@ -361,7 +361,7 @@ void Inventory2::slideIn() {
ExCommand *ex = new ExCommand(0, 17, 65, 0, 0, 0, 1, 0, 0, 0);
ex->_field_2C = 10;
- ex->_field_14 = _isInventoryOut;
+ ex->_z = _isInventoryOut;
ex->_field_20 = !_isInventoryOut;
ex->_excFlags |= 3;
ex->postMessage();
@@ -373,7 +373,7 @@ void Inventory2::slideOut() {
ExCommand *ex = new ExCommand(0, 17, 65, 0, 0, 0, 1, 0, 0, 0);
ex->_field_2C = 10;
- ex->_field_14 = _isInventoryOut;
+ ex->_z = _isInventoryOut;
ex->_field_20 = !_isInventoryOut;
ex->_excFlags |= 3;
ex->postMessage();
@@ -396,7 +396,7 @@ bool Inventory2::handleLeftClick(ExCommand *cmd) {
if (getItemFlags(icon.inventoryItemId) & 1) {
ExCommand *ex = new ExCommand(0, 17, 65, 0, 0, 0, 1, 0, 0, 0);
ex->_field_2C = 11;
- ex->_field_14 = _inventoryIcons[i].inventoryItemId;
+ ex->_z = _inventoryIcons[i].inventoryItemId;
ex->_excFlags |= 3;
ex->postMessage();
}