diff options
-rw-r--r-- | engines/sci/graphics/video32.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/sci/graphics/video32.cpp b/engines/sci/graphics/video32.cpp index a4f55ae061..0a7cd7e6ef 100644 --- a/engines/sci/graphics/video32.cpp +++ b/engines/sci/graphics/video32.cpp @@ -972,9 +972,11 @@ void DuckPlayer::open(const GuiResourceId resourceId, const int displayMode, con _pixelDouble = displayMode != 0; const int16 scale = _pixelDouble ? 2 : 1; + // SSCI seems to incorrectly calculate the draw rect by scaling the origin + // in addition to the width/height for the BR point _drawRect = Common::Rect(x, y, - (x + _decoder->getWidth()) * scale, - (y + _decoder->getHeight()) * scale); + x + _decoder->getWidth() * scale, + y + _decoder->getHeight() * scale); g_sci->_gfxCursor32->hide(); |