diff options
author | Bendegúz Nagy | 2016-06-29 23:17:04 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | bc583bf0d52cb2e9d959ad36a06e462707084d63 (patch) | |
tree | fe3f6c2f21bf9dba7838f8ba3abd20d25db5f848 | |
parent | 57ca9afcff6b688d438a7c02096141921f28fc36 (diff) | |
download | scummvm-rg350-bc583bf0d52cb2e9d959ad36a06e462707084d63.tar.gz scummvm-rg350-bc583bf0d52cb2e9d959ad36a06e462707084d63.tar.bz2 scummvm-rg350-bc583bf0d52cb2e9d959ad36a06e462707084d63.zip |
DM: Fix missing call to initArrays()
-rw-r--r-- | engines/dm/dm.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp index af0c9d587c..2d55c5e8e3 100644 --- a/engines/dm/dm.cpp +++ b/engines/dm/dm.cpp @@ -189,6 +189,8 @@ void DMEngine::processNewPartyMap(uint16 mapIndex) { } Common::Error DMEngine::run() { + initArrays(); + // scummvm/engine specific initGraphics(320, 200, false); _console = new Console(this); |