aboutsummaryrefslogtreecommitdiff
path: root/scumm/boxes.cpp
diff options
context:
space:
mode:
authorMax Horn2003-07-22 19:01:38 +0000
committerMax Horn2003-07-22 19:01:38 +0000
commitdce17ed7ac10135e7c52b3f1816741dff3a55adf (patch)
tree1d7fcda0a32c37a19f6375742993b9568c943db2 /scumm/boxes.cpp
parent655759a70da8017b59e504777c57a6df0e9bdf95 (diff)
downloadscummvm-rg350-dce17ed7ac10135e7c52b3f1816741dff3a55adf.tar.gz
scummvm-rg350-dce17ed7ac10135e7c52b3f1816741dff3a55adf.tar.bz2
scummvm-rg350-dce17ed7ac10135e7c52b3f1816741dff3a55adf.zip
fix for bug #775420; also properly implemented the 'box matrix truncated' workaround
svn-id: r9129
Diffstat (limited to 'scumm/boxes.cpp')
-rw-r--r--scumm/boxes.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/boxes.cpp b/scumm/boxes.cpp
index 5e62436502..64d0dcd405 100644
--- a/scumm/boxes.cpp
+++ b/scumm/boxes.cpp
@@ -616,6 +616,7 @@ int Scumm::getPathToDestBox(byte from, byte to) {
const byte *boxm;
byte i;
const int numOfBoxes = getNumBoxes();
+ int dest = -1;
if (from == to)
return to;
@@ -662,7 +663,7 @@ int Scumm::getPathToDestBox(byte from, byte to) {
// Skip up to the matrix data for box 'from'
for (i = 0; i < from && boxm < end; i++) {
- while (*boxm != 0xFF)
+ while (boxm < end && *boxm != 0xFF)
boxm += 3;
boxm++;
}
@@ -670,14 +671,14 @@ int Scumm::getPathToDestBox(byte from, byte to) {
// Now search for the entry for box 'to'
while (boxm < end && boxm[0] != 0xFF) {
if (boxm[0] <= to && to <= boxm[1])
- return (int8)boxm[2];
+ dest = (int8)boxm[2];
boxm += 3;
}
if (boxm >= end)
warning("The box matrix apparently is truncated (room %d)", _roomResource);
- return -1;
+ return dest;
}
/*