diff options
author | Bendegúz Nagy | 2016-08-09 13:49:49 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | 644284e077b494286142bebd7c68225401545d22 (patch) | |
tree | 5dc8929c7c9eb5a95c43d45b2880509d68b9436e | |
parent | 256c2c10f8ba77fd217a974919ae4c896b80277f (diff) | |
download | scummvm-rg350-644284e077b494286142bebd7c68225401545d22.tar.gz scummvm-rg350-644284e077b494286142bebd7c68225401545d22.tar.bz2 scummvm-rg350-644284e077b494286142bebd7c68225401545d22.zip |
DM: Fix entrance door placement
-rw-r--r-- | engines/dm/dm.cpp | 4 |
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); |