aboutsummaryrefslogtreecommitdiff
path: root/engines/lure
diff options
context:
space:
mode:
authorPaul Gilbert2007-12-23 10:52:18 +0000
committerPaul Gilbert2007-12-23 10:52:18 +0000
commit5e29703ea8eea204d663802e094bbf5fd395bdab (patch)
treef6f08cf8cb86979149db6785fb8d532440504673 /engines/lure
parent5b74b676ce35172cae45278a8e6008c0858bf4d4 (diff)
downloadscummvm-rg350-5e29703ea8eea204d663802e094bbf5fd395bdab.tar.gz
scummvm-rg350-5e29703ea8eea204d663802e094bbf5fd395bdab.tar.bz2
scummvm-rg350-5e29703ea8eea204d663802e094bbf5fd395bdab.zip
Bugfix for Town Hall room: Captive Goewin's bounds were frequently and incorrectly preventing the player from talking to the Skorl
svn-id: r29957
Diffstat (limited to 'engines/lure')
-rw-r--r--engines/lure/res.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/lure/res.cpp b/engines/lure/res.cpp
index 42eac59f26..63c4af8ec7 100644
--- a/engines/lure/res.cpp
+++ b/engines/lure/res.cpp
@@ -601,9 +601,11 @@ Hotspot *Resources::addHotspot(uint16 hotspotId) {
Hotspot *hotspot = new Hotspot(hData);
_activeHotspots.push_back(hotspot);
- if (hotspotId < FIRST_NONCHARACTER_ID)
+ if (hotspotId < FIRST_NONCHARACTER_ID) {
// Default characters to facing upwards until they start moving
hotspot->setDirection(UP);
+ hotspot->setCharRectY(0);
+ }
return hotspot;
}