aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2003-12-27 05:43:03 +0000
committerTravis Howell2003-12-27 05:43:03 +0000
commit864015333146f3a94deb82003837e0cfa295595f (patch)
tree3c64b11730c1df8abc234c902cb7ce343e4f52d0
parenteeb541850496c674663b9fe75c834977f5646284 (diff)
downloadscummvm-rg350-864015333146f3a94deb82003837e0cfa295595f.tar.gz
scummvm-rg350-864015333146f3a94deb82003837e0cfa295595f.tar.bz2
scummvm-rg350-864015333146f3a94deb82003837e0cfa295595f.zip
Search additional folder for BS1
svn-id: r11956
-rw-r--r--common/file.cpp4
-rw-r--r--sword1/sound.cpp2
2 files changed, 4 insertions, 2 deletions
diff --git a/common/file.cpp b/common/file.cpp
index 726b57b991..4f09b744d9 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -80,10 +80,12 @@ FILE *File::fopenNoCase(const char *filename, const char *directory, const char
// Simon the Sorcerer 2 Amiga/Mac
"voices/",
"VOICES/",
- // sword2 stuff if user just copied files without putting
+ // sword1/2 stuff if user just copied files without putting
// them all into the same dir like original installer did
"CLUSTERS/",
"clusters/",
+ "SPEECH/",
+ "speech/"
"SWORD2/",
"sword2/"
};
diff --git a/sword1/sound.cpp b/sword1/sound.cpp
index 83dca583d6..3c32f9abdc 100644
--- a/sword1/sound.cpp
+++ b/sword1/sound.cpp
@@ -221,7 +221,7 @@ void SwordSound::initCowSystem(void) {
sprintf(cowName, "SPEECH%d.CLU", SwordEngine::_systemVars.currentCD);
_cowFile.open(cowName);
if (!_cowFile.isOpen()) {
- sprintf(cowName, "speech/SPEECH.CLU");
+ sprintf(cowName, "SPEECH.CLU");
_cowFile.open(cowName);
}
if (_cowFile.isOpen()) {