aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/inventory.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2008-07-23 02:45:09 +0000
committerNicola Mettifogo2008-07-23 02:45:09 +0000
commit8932619ee273967821c3c5fc93ae162f75f7d6c8 (patch)
tree4a81fc016fa3be06bfe1ade90789f0137e9b4f47 /engines/parallaction/inventory.cpp
parent5544e180a33a820ca89eae6ac3f7c1ac974c8fc6 (diff)
downloadscummvm-rg350-8932619ee273967821c3c5fc93ae162f75f7d6c8.tar.gz
scummvm-rg350-8932619ee273967821c3c5fc93ae162f75f7d6c8.tar.bz2
scummvm-rg350-8932619ee273967821c3c5fc93ae162f75f7d6c8.zip
More decoupling of inventory code.
svn-id: r33224
Diffstat (limited to 'engines/parallaction/inventory.cpp')
-rw-r--r--engines/parallaction/inventory.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/parallaction/inventory.cpp b/engines/parallaction/inventory.cpp
index 58848196d7..71c336bbab 100644
--- a/engines/parallaction/inventory.cpp
+++ b/engines/parallaction/inventory.cpp
@@ -131,7 +131,7 @@ void InventoryRenderer::showInventory() {
if (!_inv)
error("InventoryRenderer not bound to inventory");
- _engineFlags |= kEngineInventory;
+// _engineFlags |= kEngineInventory;
uint16 lines = getNumLines();
@@ -147,8 +147,6 @@ void InventoryRenderer::showInventory() {
void InventoryRenderer::hideInventory() {
if (!_inv)
error("InventoryRenderer not bound to inventory");
-
- _engineFlags &= ~kEngineInventory;
}
void InventoryRenderer::getRect(Common::Rect& r) const {