[Scummvm-cvs-logs] SF.net SVN: scummvm:[43324] scummvm/trunk/engines/kyra/sequences_lok.cpp

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Wed Aug 12 20:06:35 CEST 2009


Revision: 43324
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43324&view=rev
Author:   lordhoto
Date:     2009-08-12 18:06:32 +0000 (Wed, 12 Aug 2009)

Log Message:
-----------
Fix graphics glitch in credits of Kyrandia 1 German.

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/sequences_lok.cpp

Modified: scummvm/trunk/engines/kyra/sequences_lok.cpp
===================================================================
--- scummvm/trunk/engines/kyra/sequences_lok.cpp	2009-08-12 18:05:41 UTC (rev 43323)
+++ scummvm/trunk/engines/kyra/sequences_lok.cpp	2009-08-12 18:06:32 UTC (rev 43324)
@@ -1251,7 +1251,7 @@
 	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 @@
 	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 @@
 					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();
 		}
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list