diff options
Diffstat (limited to 'engines/hdb/hdb.cpp')
-rw-r--r-- | engines/hdb/hdb.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index 03e5d694b3..d3feec6440 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -172,10 +172,6 @@ Common::Error HDBGame::run() { return Common::kReadingFailed; } - _map->load(mapStream); - _drawMan->drawSky(); - _map->draw(); - #if 0 lua->executeFile("test.lua"); #endif @@ -196,6 +192,11 @@ Common::Error HDBGame::run() { } } + _map->load(mapStream); + _drawMan->drawSky(); + _map->draw(); + _ai->processCines(); + g_system->updateScreen(); g_system->delayMillis(10); } |