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

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Mon Aug 10 16:35:29 CEST 2009


Revision: 43207
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43207&view=rev
Author:   lordhoto
Date:     2009-08-10 14:35:28 +0000 (Mon, 10 Aug 2009)

Log Message:
-----------
Fix copyright string displaying in Kyra1 amiga. Unlike the DOS version it does not use a second print for creating a shadow look.

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

Modified: scummvm/trunk/engines/kyra/seqplayer.cpp
===================================================================
--- scummvm/trunk/engines/kyra/seqplayer.cpp	2009-08-10 14:05:14 UTC (rev 43206)
+++ scummvm/trunk/engines/kyra/seqplayer.cpp	2009-08-10 14:35:28 UTC (rev 43207)
@@ -389,7 +389,8 @@
 			const int x = (Screen::SCREEN_W - _screen->getTextWidth(copyStr)) / 2;
 			const int y = 179;
 			_screen->setTextColorMap(colorMap);
-			_screen->printText(copyStr, x + 1, y + 1, 0xB, 0xC);
+			if (_vm->gameFlags().platform != Common::kPlatformAmiga)
+				_screen->printText(copyStr, x + 1, y + 1, 0xB, 0xC);
 			_screen->printText(copyStr, x, y, 0xF, 0xC);
 		}
 		break;


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