diff options
author | Nipun Garg | 2019-06-08 16:19:14 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:45 +0200 |
commit | fa8880129098e5f9fcfe02dae88ecd70943f9d73 (patch) | |
tree | c9213482c69a57d520972b7a59fb9d1215d21a2d /engines | |
parent | 35a351ce90273c97ba7700117e4865f2fcfa472d (diff) | |
download | scummvm-rg350-fa8880129098e5f9fcfe02dae88ecd70943f9d73.tar.gz scummvm-rg350-fa8880129098e5f9fcfe02dae88ecd70943f9d73.tar.bz2 scummvm-rg350-fa8880129098e5f9fcfe02dae88ecd70943f9d73.zip |
HDB: Call _map->draw() from hdb.cpp
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/hdb.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp index f6f939f290..b0ed1d8c6b 100644 --- a/engines/hdb/hdb.cpp +++ b/engines/hdb/hdb.cpp @@ -166,6 +166,7 @@ Common::Error HDBGame::run() { } _map->load(mapStream); + _map->draw(); #if 0 lua->executeFile("test.lua"); @@ -187,9 +188,6 @@ Common::Error HDBGame::run() { } } - titlePic->draw(0, 0); - tile->draw(0, 0); - g_system->updateScreen(); g_system->delayMillis(10); } |