diff options
author | Paul Gilbert | 2008-01-09 12:36:58 +0000 |
---|---|---|
committer | Paul Gilbert | 2008-01-09 12:36:58 +0000 |
commit | 6d4d02a27f989db27f94aebce4f5f4475a02fb33 (patch) | |
tree | 31e7b55ca237ae7155bb8fdc5a7e10a7446e72ed | |
parent | af443ba924a4575cb799e932aa02f197332ede0a (diff) | |
download | scummvm-rg350-6d4d02a27f989db27f94aebce4f5f4475a02fb33.tar.gz scummvm-rg350-6d4d02a27f989db27f94aebce4f5f4475a02fb33.tar.bz2 scummvm-rg350-6d4d02a27f989db27f94aebce4f5f4475a02fb33.zip |
Bugfix for #1866784 - Castle Skorl can be activated multiple times
svn-id: r30354
-rw-r--r-- | engines/lure/hotspots.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index 8fe8e74c76..534fe41acf 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -3878,6 +3878,7 @@ void HotspotTickHandlers::castleSkorlAnimHandler(Hotspot &h) { HotspotData *hotspot = res.getHotspot(h.hotspotId()); assert(hotspot); res.deactivateHotspot(hotspot->hotspotId); + hotspot->roomNumber = 0xffff; hotspot->layer = 255; hotspot->talkCountdown = 0; hotspot->flags |= HOTSPOTFLAG_MENU_EXCLUSION; |