aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/scene_v1.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2007-08-31 13:11:26 +0000
committerJohannes Schickel2007-08-31 13:11:26 +0000
commit318c8a1d472ad329f352c39fd87c6cfb376ec4fb (patch)
tree45a2b1984f91988c0f93753ef47223fc65635600 /engines/kyra/scene_v1.cpp
parent89e10f450fa29513e01941b49ca80826322ff380 (diff)
downloadscummvm-rg350-318c8a1d472ad329f352c39fd87c6cfb376ec4fb.tar.gz
scummvm-rg350-318c8a1d472ad329f352c39fd87c6cfb376ec4fb.tar.bz2
scummvm-rg350-318c8a1d472ad329f352c39fd87c6cfb376ec4fb.zip
Fix for bug #1784937 ("KYRA: Wrong path for Brandon in starting location").
svn-id: r28773
Diffstat (limited to 'engines/kyra/scene_v1.cpp')
-rw-r--r--engines/kyra/scene_v1.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/kyra/scene_v1.cpp b/engines/kyra/scene_v1.cpp
index 3754d5e2ab..9940063d24 100644
--- a/engines/kyra/scene_v1.cpp
+++ b/engines/kyra/scene_v1.cpp
@@ -1166,7 +1166,9 @@ void KyraEngine_v1::setCharactersPositions(int character) {
int KyraEngine_v1::findWay(int x, int y, int toX, int toY, int *moveTable, int moveTableSize) {
debugC(9, kDebugLevelMain, "KyraEngine_v1::findWay(%d, %d, %d, %d, %p, %d)", x, y, toX, toY, (const void *)moveTable, moveTableSize);
- KyraEngine::findWay(x, y, toX, toY, moveTable, moveTableSize);
+ int ret = KyraEngine::findWay(x, y, toX, toY, moveTable, moveTableSize);
+ if (ret == 0x7D00)
+ return 0;
return getMoveTableSize(moveTable);
}