diff options
-rw-r--r-- | engines/sci/graphics/frameout.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index f8d2260a4e..04a247bec9 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -140,6 +140,8 @@ void GfxFrameout::kernelFrameout() { planeRect.top = (planeRect.top * _screen->getHeight()) / planeResY; planeRect.left = (planeRect.left * _screen->getWidth()) / planeResX; + planeRect.bottom = (planeRect.bottom * _screen->getHeight()) / planeResY; + planeRect.right = (planeRect.right * _screen->getWidth()) / planeResX; // Fill our itemlist for this plane itemCount = 0; |