diff options
author | Martin Kiewitz | 2010-02-04 16:14:59 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-02-04 16:14:59 +0000 |
commit | 7b0b4f5313c73d9c86badc90e38087840879af27 (patch) | |
tree | 4903d451eeae642496180f6bbf21df4363a28c72 | |
parent | 751db2fcf3830048e477ec093214a766e1597918 (diff) | |
download | scummvm-rg350-7b0b4f5313c73d9c86badc90e38087840879af27.tar.gz scummvm-rg350-7b0b4f5313c73d9c86badc90e38087840879af27.tar.bz2 scummvm-rg350-7b0b4f5313c73d9c86badc90e38087840879af27.zip |
SCI: also adjusting bottom/right coordinate of plane rect
svn-id: r47878
-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; |