diff options
author | Nipun Garg | 2019-06-21 09:47:10 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:54 +0200 |
commit | b6520708a5d1303fecf8b12ab7e21c15d6be0265 (patch) | |
tree | ae2100fc0e9faae616a0168371d8de4e9d3fb5a4 /engines | |
parent | 1a8292fccbd82583c124ce060a990993e8c5f0bb (diff) | |
download | scummvm-rg350-b6520708a5d1303fecf8b12ab7e21c15d6be0265.tar.gz scummvm-rg350-b6520708a5d1303fecf8b12ab7e21c15d6be0265.tar.bz2 scummvm-rg350-b6520708a5d1303fecf8b12ab7e21c15d6be0265.zip |
HDB: Draw Entities, Foregrounds and Gratings
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/hdb.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index bea2c7ec7d..66bffa7fbd 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -288,6 +288,9 @@ Common::Error HDBGame::run() { _drawMan->drawSky(); _map->draw(); _ai->processCines(); + _map->drawEnts(); + _map->drawGratings(); + _map->drawForegrounds(); // Update Timer that's NOT used for in-game Timing _prevTimeSlice = _timeSlice; |