MOHAWK: Fix Myst backgrounds being draw one pixel too low on some cards.

Happened in Myst's Generator cave.
This commit is contained in:
Bastien Bouclet 2011-05-14 17:31:22 +02:00
parent 0788493015
commit 0127a888fb

View File

@ -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) {