diff options
author | Johannes Schickel | 2009-08-10 14:35:28 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-08-10 14:35:28 +0000 |
commit | fe7453be1c32b6187706a6be70a0dbbe4edb3e02 (patch) | |
tree | 6e111821548bf115be106f7b1fa0d14348d957c9 /engines | |
parent | d8b2baee97f762c491d4f58d263b17af791d73fc (diff) | |
download | scummvm-rg350-fe7453be1c32b6187706a6be70a0dbbe4edb3e02.tar.gz scummvm-rg350-fe7453be1c32b6187706a6be70a0dbbe4edb3e02.tar.bz2 scummvm-rg350-fe7453be1c32b6187706a6be70a0dbbe4edb3e02.zip |
Fix copyright string displaying in Kyra1 amiga. Unlike the DOS version it does not use a second print for creating a shadow look.
svn-id: r43207
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/seqplayer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/seqplayer.cpp b/engines/kyra/seqplayer.cpp index 2145591c03..38d1b90e7a 100644 --- a/engines/kyra/seqplayer.cpp +++ b/engines/kyra/seqplayer.cpp @@ -389,7 +389,8 @@ void SeqPlayer::s1_copyRegionSpecial() { 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; |