From 3c562f7f1be4ef99413b39a999fcfaa97cb53d29 Mon Sep 17 00:00:00 2001 From: Nipun Garg Date: Fri, 7 Jun 2019 19:42:43 +0530 Subject: HDB: Stub out Map::loadTiles() It depends on DrawMan functionality which hasn't been implemented yet --- engines/hdb/map-loader.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engines/hdb/map-loader.cpp b/engines/hdb/map-loader.cpp index f0f9370e97..2640d79817 100644 --- a/engines/hdb/map-loader.cpp +++ b/engines/hdb/map-loader.cpp @@ -104,6 +104,10 @@ int Map::loadTiles() { for (uint j = 0; j < _height; j++) { for (uint i = 0; i < _width; i++) { tile = _background[j * _width + i]; + /* + TODO: Load tiles through DrawMan + */ + warning("STUB: MAP LOAD TILES INCOMPLETE"); } } -- cgit v1.2.3