From 2d9bb392aeef7beab60986a57889eb38001407ef Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 5 Mar 2014 21:57:38 -0500 Subject: MADS: Implemented missing hotspot method --- engines/mads/hotspots.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/mads/hotspots.cpp b/engines/mads/hotspots.cpp index 340ad7ddf1..a3660dfd81 100644 --- a/engines/mads/hotspots.cpp +++ b/engines/mads/hotspots.cpp @@ -122,7 +122,21 @@ void DynamicHotspots::reset() { } void DynamicHotspots::refresh() { - error("DynamicHotspots::refresh"); + for (uint i = 0; i < _entries.size(); ++i) { + DynamicHotspot &dh = (*this)[i]; + + if ((*this)[i]._active) { + switch (_vm->_game->_scene._screenObjects._v832EC) { + case 0: + case 2: + _vm->_game->_scene._screenObjects.add(dh._bounds, CAT_12, dh._descId); + _vm->_game->_scene._screenObjects._v8333C = true; + break; + default: + break; + } + } + } } } // End of namespace MADS -- cgit v1.2.3