From 949ade74f0b5e10cb31dca4d88b705309b10cc96 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 12 Aug 2009 18:06:32 +0000 Subject: Fix graphics glitch in credits of Kyrandia 1 German. svn-id: r43324 --- engines/kyra/sequences_lok.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines') diff --git a/engines/kyra/sequences_lok.cpp b/engines/kyra/sequences_lok.cpp index 742f96e5e2..6c37f51f26 100644 --- a/engines/kyra/sequences_lok.cpp +++ b/engines/kyra/sequences_lok.cpp @@ -1251,7 +1251,7 @@ void KyraEngine_LoK::seq_playCredits() { if (_flags.platform == Common::kPlatformAmiga) _screen->setPaletteIndex(16, 63, 63, 63); - _screen->copyRegion(8, 32, 8, 32, 312, 128, 4, 0, Screen::CR_NO_P_CHECK); + _screen->copyRegion(0, 32, 0, 32, 320, 128, 4, 0, Screen::CR_NO_P_CHECK); _screen->fadePalette(_screen->getPalette(0), 0x5A); Common::Event event; @@ -1260,7 +1260,7 @@ void KyraEngine_LoK::seq_playCredits() { while (!finished) { uint32 startLoop = _system->getMillis(); if (bottom > 175) { - _screen->copyRegion(8, 32, 8, 32, 312, 128, 4, 2, Screen::CR_NO_P_CHECK); + _screen->copyRegion(0, 32, 0, 32, 320, 128, 4, 2, Screen::CR_NO_P_CHECK); bottom = 0; for (CreditsLineList::iterator it = lines.begin(); it != lines.end(); ++it) { @@ -1281,7 +1281,7 @@ void KyraEngine_LoK::seq_playCredits() { bottom = it->y; } - _screen->copyRegion(8, 32, 8, 32, 312, 128, 2, 0, Screen::CR_NO_P_CHECK); + _screen->copyRegion(0, 32, 0, 32, 320, 128, 2, 0, Screen::CR_NO_P_CHECK); _screen->updateScreen(); } -- cgit v1.2.3