aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/gfx.cpp
diff options
context:
space:
mode:
authorBendegúz Nagy2016-07-14 16:32:00 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit9f9ac99b3198c09e58767ab2fe3eb71d03a5647e (patch)
treec727ee59674eb423c1a59542ac77c70cfa7838e8 /engines/dm/gfx.cpp
parent78cf0030e3545eabe254a9643c1c9570d5e1068d (diff)
downloadscummvm-rg350-9f9ac99b3198c09e58767ab2fe3eb71d03a5647e.tar.gz
scummvm-rg350-9f9ac99b3198c09e58767ab2fe3eb71d03a5647e.tar.bz2
scummvm-rg350-9f9ac99b3198c09e58767ab2fe3eb71d03a5647e.zip
DM: Fix broken damage display
Diffstat (limited to 'engines/dm/gfx.cpp')
-rw-r--r--engines/dm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/gfx.cpp b/engines/dm/gfx.cpp
index f05a8ca7bb..5efb3f05ac 100644
--- a/engines/dm/gfx.cpp
+++ b/engines/dm/gfx.cpp
@@ -1445,7 +1445,7 @@ void DisplayMan::f21_blitToScreen(byte *bitmap, int16* box, int16 byteWidth, Col
void DisplayMan::f21_blitToScreen(byte* bitmap, Box* box, int16 byteWidth, Color transparent, int16 height) {
_g578_useByteBoxCoordinates = false;
- f132_blitToBitmap(bitmap, _g348_bitmapScreen, *box, 0, 0, byteWidth, k112_byteWidthViewport, transparent, height, k136_heightViewport);
+ f132_blitToBitmap(bitmap, _g348_bitmapScreen, *box, 0, 0, byteWidth, k160_byteWidthScreen, transparent, height, k200_heightScreen);
}
void DisplayMan::f101_drawWallSetBitmapWithoutTransparency(byte *bitmap, Frame &f) {