diff options
-rw-r--r-- | engines/hdb/hdb.cpp | 4 | ||||
-rw-r--r-- | engines/hdb/map.cpp | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index 43b419abdc..488158152e 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -1012,7 +1012,9 @@ Common::Error HDBGame::run() { if (e && e->level < 2) _ai->drawWayPoints(); - _map->drawEnts(); + if (!(g_hdb->isDemo() && g_hdb->isPPC())) + _map->drawEnts(); + _map->drawGratings(); if (e && e->level == 2) diff --git a/engines/hdb/map.cpp b/engines/hdb/map.cpp index 5defd8680e..e4acff3aba 100644 --- a/engines/hdb/map.cpp +++ b/engines/hdb/map.cpp @@ -910,6 +910,9 @@ void Map::draw() { screenY += kTileWidth; } + if (g_hdb->isDemo() && g_hdb->isPPC()) + drawEnts(); + // Animate FAST Map Tiles if (!(_animCycle % kAnimFastFrames)) { for (Common::Array<uint32>::iterator it = _listBGAnimFast.begin(); it != _listBGAnimFast.end(); ++it) { |