aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/res.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2006-04-29 11:17:06 +0000
committerPaul Gilbert2006-04-29 11:17:06 +0000
commit302c825a1702a60f2af75af67090457477ea2bce (patch)
tree222653ac6f7809627de187124313b7686b968e3d /engines/lure/res.cpp
parent3e8763f454dc82d0e1969c39927fa6fdee3454f3 (diff)
downloadscummvm-rg350-302c825a1702a60f2af75af67090457477ea2bce.tar.gz
scummvm-rg350-302c825a1702a60f2af75af67090457477ea2bce.tar.bz2
scummvm-rg350-302c825a1702a60f2af75af67090457477ea2bce.zip
Reworked resource loading to no longer load hotspot proximities separately, or provide access to the list
svn-id: r22206
Diffstat (limited to 'engines/lure/res.cpp')
-rw-r--r--engines/lure/res.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/engines/lure/res.cpp b/engines/lure/res.cpp
index c14ec35655..8305dd28f8 100644
--- a/engines/lure/res.cpp
+++ b/engines/lure/res.cpp
@@ -254,17 +254,6 @@ void Resources::reloadData() {
}
delete mb;
- // Load a list of hotspot proximities
- mb = d.getEntry(HOTSPOT_PROXIMITY_RESOURCE_ID);
- HotspotProximityResource *proxRec = (HotspotProximityResource *) mb->data();
- while (FROM_LE_16(proxRec->hotspotId) != 0xffff) {
- HotspotProximityData *newEntry = new HotspotProximityData(proxRec);
- _proximityList.push_back(newEntry);
- ++joinRec;
- ++proxRec;
- }
- delete mb;
-
// Load in the list of room exit coordinates
mb = d.getEntry(EXIT_COORDINATES_RESOURCE_ID);
RoomExitCoordinateEntryResource *coordRec = (RoomExitCoordinateEntryResource *) mb->data();