aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2014-11-23 17:55:55 -0500
committerPaul Gilbert2014-12-12 22:40:44 -0500
commitd2d75dd4a7b3b7d2a90186adf82d45c1c18e3c2a (patch)
treeb207931742275131ecd1a328faf334c90e4efb0c
parent08c65399002ffa7c1d5f055c242996ff0f416fad (diff)
downloadscummvm-rg350-d2d75dd4a7b3b7d2a90186adf82d45c1c18e3c2a.tar.gz
scummvm-rg350-d2d75dd4a7b3b7d2a90186adf82d45c1c18e3c2a.tar.bz2
scummvm-rg350-d2d75dd4a7b3b7d2a90186adf82d45c1c18e3c2a.zip
ACCESS: Workaround for original game bug doing inventory check
In scene 31, moving the corrugated metal does a check on an invalid item index
-rw-r--r--engines/access/inventory.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/access/inventory.cpp b/engines/access/inventory.cpp
index 34470ace1e..11baa8fc08 100644
--- a/engines/access/inventory.cpp
+++ b/engines/access/inventory.cpp
@@ -87,7 +87,10 @@ InventoryManager::InventoryManager(AccessEngine *vm) : Manager(vm) {
}
int &InventoryManager::operator[](int idx) {
- return _inv[idx]._value;
+ // WORKAROUND: At least in Amazon, some game scripts accidentally do reads
+ // beyond the length of the inventory array
+ static int invalid = 0;
+ return (idx >= _inv.size()) ? invalid : _inv[idx]._value;
}
int InventoryManager::useItem() {