aboutsummaryrefslogtreecommitdiff
path: root/kyra
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-10-19 15:59:40 +0000
committerTorbjörn Andersson2005-10-19 15:59:40 +0000
commit930c5e29ff838d6f69719ed4607b35c458adc5ab (patch)
treed33cccf7ed8ecece152158c757136bc59c824c56 /kyra
parentaa6683a0ebb873a6c2a62a5d35b79fec17cd05d9 (diff)
downloadscummvm-rg350-930c5e29ff838d6f69719ed4607b35c458adc5ab.tar.gz
scummvm-rg350-930c5e29ff838d6f69719ed4607b35c458adc5ab.tar.bz2
scummvm-rg350-930c5e29ff838d6f69719ed4607b35c458adc5ab.zip
I hope I understood LordHoto correctly. This change fixes the English CD
version, at least. svn-id: r19183
Diffstat (limited to 'kyra')
-rw-r--r--kyra/kyra.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/kyra/kyra.cpp b/kyra/kyra.cpp
index a10d5f1db9..01134024a6 100644
--- a/kyra/kyra.cpp
+++ b/kyra/kyra.cpp
@@ -847,14 +847,16 @@ void KyraEngine::seq_introStory() {
debug(9, "KyraEngine::seq_introStory()");
_screen->clearPage(3);
_screen->clearPage(0);
- if (_features & GF_ENGLISH) {
- loadBitmap("TEXT.CPS", 3, 3, 0);
+ if ((_features & GF_ENGLISH) && (_features & GF_TALKIE)) {
+ loadBitmap("TEXT_ENG.CPS", 3, 3, 0);
} else if (_features & GF_GERMAN) {
loadBitmap("TEXT_GER.CPS", 3, 3, 0);
} else if (_features & GF_FRENCH) {
loadBitmap("TEXT_FRE.CPS", 3, 3, 0);
} else if (_features & GF_SPANISH) {
loadBitmap("TEXT_SPA.CPS", 3, 3, 0);
+ } else if ((_features & GF_ENGLISH) && (_features & GF_FLOPPY)) {
+ loadBitmap("TEXT.CPS", 3, 3, 0);
} else {
warning("no story graphics file found");
}