aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/map-loader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/map-loader.cpp')
-rw-r--r--engines/hdb/map-loader.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/hdb/map-loader.cpp b/engines/hdb/map-loader.cpp
index 3b2fbe3792..dff7f0a261 100644
--- a/engines/hdb/map-loader.cpp
+++ b/engines/hdb/map-loader.cpp
@@ -81,7 +81,6 @@ bool Map::load(Common::SeekableReadStream *stream) {
Common::hexdump((const byte *)_background, 512);
}
-
// Reading Foreground
_foreground = new uint16[_width * _height];
stream->seek(_foregroundOffset);
@@ -614,6 +613,10 @@ void Map::draw() {
*/
}
+void Map::drawEnts() {
+ g_hdb->_ai->drawEnts(_mapX, _mapY, kScreenXTiles * kTileWidth, kScreenYTiles * kTileHeight);
+}
+
uint32 Map::getMapBGTileFlags(int x, int y) {
if (x < 0 || x >= _width || y < 0 || y >= _height) {
return 0;