aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.cpp
diff options
context:
space:
mode:
authorBendegúz Nagy2016-08-09 13:49:49 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit644284e077b494286142bebd7c68225401545d22 (patch)
tree5dc8929c7c9eb5a95c43d45b2880509d68b9436e /engines/dm/dm.cpp
parent256c2c10f8ba77fd217a974919ae4c896b80277f (diff)
downloadscummvm-rg350-644284e077b494286142bebd7c68225401545d22.tar.gz
scummvm-rg350-644284e077b494286142bebd7c68225401545d22.tar.bz2
scummvm-rg350-644284e077b494286142bebd7c68225401545d22.zip
DM: Fix entrance door placement
Diffstat (limited to 'engines/dm/dm.cpp')
-rw-r--r--engines/dm/dm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp
index 2e53490622..2f52b07ff6 100644
--- a/engines/dm/dm.cpp
+++ b/engines/dm/dm.cpp
@@ -707,9 +707,9 @@ void DMEngine::f439_drawEntrance() {
}
void DMEngine::f438_STARTEND_OpenEntranceDoors() {
- Box rightDoorBox(109, 231, 33, 193);
+ Box rightDoorBox(109, 231, 30, 193);
byte *rightDoorBitmap = _displayMan->f489_getNativeBitmapOrGraphic(k3_entranceRightDoorGraphicIndice);
- Box leftDoorBox(0, 100, 33, 193);
+ Box leftDoorBox(0, 100, 30, 193);
uint16 leftDoorBlitFrom = 0;
byte *leftDoorBitmap = _displayMan->f489_getNativeBitmapOrGraphic(k2_entranceLeftDoorGraphicIndice);