aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/gfx.cpp
diff options
context:
space:
mode:
authorBendegúz Nagy2016-08-30 21:08:13 +0200
committerBendegúz Nagy2016-08-30 21:09:33 +0200
commitdc40f028afb38c970868d469005bd651df9f7b87 (patch)
treefebf84985f298bb8774ba8f5c62b5cc47e4d8757 /engines/dm/gfx.cpp
parent150a16cd49b7bb5c19893c1805147d6cc4553fe7 (diff)
downloadscummvm-rg350-dc40f028afb38c970868d469005bd651df9f7b87.tar.gz
scummvm-rg350-dc40f028afb38c970868d469005bd651df9f7b87.tar.bz2
scummvm-rg350-dc40f028afb38c970868d469005bd651df9f7b87.zip
DM: Add message area scroller
Diffstat (limited to 'engines/dm/gfx.cpp')
-rw-r--r--engines/dm/gfx.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/dm/gfx.cpp b/engines/dm/gfx.cpp
index 264fa29e8e..3163b8c454 100644
--- a/engines/dm/gfx.cpp
+++ b/engines/dm/gfx.cpp
@@ -38,6 +38,7 @@
#include "champion.h"
#include "eventman.h"
#include "lzw.h"
+#include "text.h"
namespace DM {
DisplayMan::DisplayMan(DMEngine *dmEngine) : _vm(dmEngine) {
@@ -914,6 +915,7 @@ byte *DisplayMan::getExplosionBitmap(uint16 explosionAspIndex, uint16 scale, int
}
void DisplayMan::updateScreen() {
+ _vm->_textMan->updateMessageArea();
// apply copper
for (uint32 i = 320 * 30; i < 320 * 170; ++i)
_bitmapScreen[i] += 16;