aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-09-01 06:21:07 +0000
committerTravis Howell2004-09-01 06:21:07 +0000
commit2a219cc70108908251b113a78f22dc433c244ef4 (patch)
treef29e3a4c26864d4b02ba4ee73e7a5614fbeb6088 /scumm
parentdb2f3cd8680f783728adcaa003da4f41d8b6b40a (diff)
downloadscummvm-rg350-2a219cc70108908251b113a78f22dc433c244ef4.tar.gz
scummvm-rg350-2a219cc70108908251b113a78f22dc433c244ef4.tar.bz2
scummvm-rg350-2a219cc70108908251b113a78f22dc433c244ef4.zip
HE 80+ speech files aren't encoded
svn-id: r14853
Diffstat (limited to 'scumm')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index c92af46e2a..8b40a54792 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -1049,7 +1049,7 @@ ScummFile *Sound::openSfxFile() {
sprintf(buf, "%s.he2", _vm->getGameName());
else
sprintf(buf, "%s.tlk", _vm->getGameName());
- if (file->open(buf))
+ if (file->open(buf) && _vm->_heversion <= 72)
file->setEnc(0x69);
_soundMode = kVOCMode;
}