diff options
-rw-r--r-- | common/file.cpp | 4 | ||||
-rw-r--r-- | sword1/sound.cpp | 2 |
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()) { |