aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2009-08-12 18:06:32 +0000
committerJohannes Schickel2009-08-12 18:06:32 +0000
commit949ade74f0b5e10cb31dca4d88b705309b10cc96 (patch)
tree4aada0cacd5a82d200d4ac1d5d92e9e97e179027 /engines
parent06657efc15fa73abe41002694ae1673b3c7f6ba5 (diff)
downloadscummvm-rg350-949ade74f0b5e10cb31dca4d88b705309b10cc96.tar.gz
scummvm-rg350-949ade74f0b5e10cb31dca4d88b705309b10cc96.tar.bz2
scummvm-rg350-949ade74f0b5e10cb31dca4d88b705309b10cc96.zip
Fix graphics glitch in credits of Kyrandia 1 German.
svn-id: r43324
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/sequences_lok.cpp6
1 files changed, 3 insertions, 3 deletions
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();
}