aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorJohannes Schickel2009-11-14 19:34:44 +0000
committerJohannes Schickel2009-11-14 19:34:44 +0000
commitb9b5511b3c5e916366c20e251461f217b679054e (patch)
treef3499225e11a0f6c40b66317743a7425259d93d8 /engines/kyra
parentb6c46c752ccc5f5239d492c9b668ef89cd606f81 (diff)
downloadscummvm-rg350-b9b5511b3c5e916366c20e251461f217b679054e.tar.gz
scummvm-rg350-b9b5511b3c5e916366c20e251461f217b679054e.tar.bz2
scummvm-rg350-b9b5511b3c5e916366c20e251461f217b679054e.zip
Cleanup.
svn-id: r45904
Diffstat (limited to 'engines/kyra')
-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 3c60bea684..67cdbdae17 100644
--- a/engines/kyra/sequences_lok.cpp
+++ b/engines/kyra/sequences_lok.cpp
@@ -1189,7 +1189,7 @@ void KyraEngine_LoK::seq_playCredits() {
_screen->enableInterfacePalette(false);
_screen->hideMouse();
- if (!_flags.isTalkie && _flags.platform != Common::kPlatformAmiga) {
+ if (!_flags.isTalkie) {
_screen->loadFont(Screen::FID_CRED6_FNT, "CREDIT6.FNT");
_screen->loadFont(Screen::FID_CRED8_FNT, "CREDIT8.FNT");
@@ -1250,12 +1250,12 @@ void KyraEngine_LoK::seq_playCredits() {
if (*currentString == 1) {
currentString++;
- if (!_flags.isTalkie && _flags.platform != Common::kPlatformAmiga)
+ if (!_flags.isTalkie)
_screen->setFont(Screen::FID_CRED6_FNT);
} else if (*currentString == 2) {
currentString++;
- if (!_flags.isTalkie && _flags.platform != Common::kPlatformAmiga)
+ if (!_flags.isTalkie)
_screen->setFont(Screen::FID_CRED8_FNT);
}