diff options
author | Nipun Garg | 2019-06-23 08:59:58 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:57 +0200 |
commit | 11b19dd013b0dd107c4ad0c1b1cc3475b9440d5e (patch) | |
tree | fd491806d8605e089d4dab01dfc9e0cc49cbfde0 | |
parent | 3522d6f3347b1d3b83824b3db4eebeb381e3eee0 (diff) | |
download | scummvm-rg350-11b19dd013b0dd107c4ad0c1b1cc3475b9440d5e.tar.gz scummvm-rg350-11b19dd013b0dd107c4ad0c1b1cc3475b9440d5e.tar.bz2 scummvm-rg350-11b19dd013b0dd107c4ad0c1b1cc3475b9440d5e.zip |
HDB: Call moveEnts()
-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 f72a3f2108..1f05b338d2 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -292,6 +292,9 @@ Common::Error HDBGame::run() { } _drawMan->drawSky(); + + _ai->moveEnts(); + _map->draw(); _ai->processCines(); _map->drawEnts(); |