diff options
author | Paul Gilbert | 2007-12-23 10:52:18 +0000 |
---|---|---|
committer | Paul Gilbert | 2007-12-23 10:52:18 +0000 |
commit | 5e29703ea8eea204d663802e094bbf5fd395bdab (patch) | |
tree | f6f08cf8cb86979149db6785fb8d532440504673 /engines | |
parent | 5b74b676ce35172cae45278a8e6008c0858bf4d4 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/lure/res.cpp | 4 |
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; } |