diff options
-rw-r--r-- | scumm/gfx.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index ed341641f2..a51be8a668 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -89,6 +89,11 @@ void Scumm::initVirtScreen(int slot, int number, int top, int width, int height, assert(height >= 0); assert(slot >= 0 && slot < 4); + if (_gameId == GID_DIG) { + if ((!slot) && (_scrHeight != 0)) + height = _scrHeight; + } + vs->number = slot; vs->unk1 = 0; vs->width = _realWidth; |