diff options
author | Bastien Bouclet | 2011-05-14 17:31:22 +0200 |
---|---|---|
committer | Bastien Bouclet | 2011-05-14 19:54:30 +0200 |
commit | 0127a888fb821a6d9ef761b460cbb541bbfc2650 (patch) | |
tree | 788270a2e09a8d99e7330bb902cc7d2341af8d1b /engines | |
parent | 0788493015cb899b50986f2173899c106d9d789b (diff) | |
download | scummvm-rg350-0127a888fb821a6d9ef761b460cbb541bbfc2650.tar.gz scummvm-rg350-0127a888fb821a6d9ef761b460cbb541bbfc2650.tar.bz2 scummvm-rg350-0127a888fb821a6d9ef761b460cbb541bbfc2650.zip |
MOHAWK: Fix Myst backgrounds being draw one pixel too low on some cards.
Happened in Myst's Generator cave.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/myst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/myst.cpp b/engines/mohawk/myst.cpp index f7f1edf4e5..44bfd16e12 100644 --- a/engines/mohawk/myst.cpp +++ b/engines/mohawk/myst.cpp @@ -550,7 +550,7 @@ uint16 MohawkEngine_Myst::getCardBackgroundId() { } void MohawkEngine_Myst::drawCardBackground() { - _gfx->copyImageToBackBuffer(getCardBackgroundId(), Common::Rect(0, 0, 544, 333)); + _gfx->copyImageToBackBuffer(getCardBackgroundId(), Common::Rect(0, 0, 544, 332)); } void MohawkEngine_Myst::changeToCard(uint16 card, bool updateScreen) { |