aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/map.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-04-22 18:41:40 -0500
committerPaul Gilbert2015-04-22 18:41:40 -0500
commitafbc333696c11a5a10bd6aa1061eded92836c751 (patch)
tree31e63aa6d9af5e3e0cc7b32cdcad34e4222534fc /engines/sherlock/map.h
parent0a4b722b5d348ba38ab4161cac06597506cbe6cf (diff)
downloadscummvm-rg350-afbc333696c11a5a10bd6aa1061eded92836c751.tar.gz
scummvm-rg350-afbc333696c11a5a10bd6aa1061eded92836c751.tar.bz2
scummvm-rg350-afbc333696c11a5a10bd6aa1061eded92836c751.zip
SHERLOCK: Fix display of overhead map
Diffstat (limited to 'engines/sherlock/map.h')
-rw-r--r--engines/sherlock/map.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sherlock/map.h b/engines/sherlock/map.h
index f324160bce..5b63fe768c 100644
--- a/engines/sherlock/map.h
+++ b/engines/sherlock/map.h
@@ -56,7 +56,7 @@ private:
ImageFile *_mapCursors;
ImageFile *_shapes;
ImageFile *_iconShapes;
- byte _sequences[3][MAX_FRAME];
+ byte _sequences[MAX_HOLMES_SEQUENCE][MAX_FRAME];
Common::Point _bigPos;
Common::Point _overPos;
Common::Point _lDrawnPos;
@@ -89,6 +89,7 @@ public:
const MapEntry &operator[](int idx) { return _points[idx]; }
void loadPoints(int count, const int *xList, const int *yList, const int *transList);
+ void loadSequences(int count, const byte *seq);
int show();
};