diff options
author | Paul Gilbert | 2007-08-05 03:26:00 +0000 |
---|---|---|
committer | Paul Gilbert | 2007-08-05 03:26:00 +0000 |
commit | ec1803f838d5efc7decf75c05a1fb4a9633751e5 (patch) | |
tree | 0bfdb5f26d0f3699a4cf0c71f5938a570c04b5bf | |
parent | d03e3e9c870a7d0d28c6e43ee3f0fe0af2a4847d (diff) | |
download | scummvm-rg350-ec1803f838d5efc7decf75c05a1fb4a9633751e5.tar.gz scummvm-rg350-ec1803f838d5efc7decf75c05a1fb4a9633751e5.tar.bz2 scummvm-rg350-ec1803f838d5efc7decf75c05a1fb4a9633751e5.zip |
Removed unused fields
svn-id: r28458
-rw-r--r-- | engines/lure/hotspots.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index b4ade06bd4..7def0be9ab 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -2587,7 +2587,7 @@ void HotspotTickHandlers::puzzledAnimHandler(Hotspot &h) { void HotspotTickHandlers::roomExitAnimHandler(Hotspot &h) { Resources &res = Resources::getReference(); - ValueTableData &fields = res.fieldList(); +// ValueTableData &fields = res.fieldList(); RoomExitJoinData *rec = res.getExitJoin(h.hotspotId()); if (!rec) return; byte *currentFrame, *destFrame; @@ -2628,7 +2628,6 @@ void HotspotTickHandlers::playerAnimHandler(Hotspot &h) { RoomPathsData &paths = Resources::getReference().getRoom(h.roomNumber())->paths; PathFinder &pathFinder = h.pathFinder(); CurrentActionStack &actions = h.currentActions(); - ValueTableData &fields = res.fieldList(); uint16 impingingList[MAX_NUM_IMPINGING]; int numImpinging; Action hsAction; |