diff options
Diffstat (limited to 'engines/lure')
-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; } |