From 1bd92d05511254af685ff0cb0ccdee41310e8fcb Mon Sep 17 00:00:00 2001 From: athrxx Date: Thu, 2 Jan 2020 00:04:34 +0100 Subject: KYRA: (EOB) - fix minor graphics glitch (y-coords for certain doors off by a few pixels) --- engines/kyra/engine/eob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/kyra/engine/eob.cpp b/engines/kyra/engine/eob.cpp index cdd49a75fd..af0ca4ceda 100644 --- a/engines/kyra/engine/eob.cpp +++ b/engines/kyra/engine/eob.cpp @@ -438,7 +438,7 @@ void EoBEngine::drawDoorIntern(int type, int index, int x, int y, int w, int wal case 4: case 5: case 6: - y = _dscDoorY6[mDim] - shp[1]; + y = _dscDoorY7[mDim] - shp[1]; d1 = _dscDoorCoordsExt[index << 1] >> 3; d2 = _dscDoorCoordsExt[(index << 1) + 1] >> 3; if (_shpDmX1 > d1) -- cgit v1.2.3