diff options
| author | Travis Howell | 2004-09-01 06:21:07 +0000 |
|---|---|---|
| committer | Travis Howell | 2004-09-01 06:21:07 +0000 |
| commit | 2a219cc70108908251b113a78f22dc433c244ef4 (patch) | |
| tree | f29e3a4c26864d4b02ba4ee73e7a5614fbeb6088 | |
| parent | db2f3cd8680f783728adcaa003da4f41d8b6b40a (diff) | |
| download | scummvm-rg350-2a219cc70108908251b113a78f22dc433c244ef4.tar.gz scummvm-rg350-2a219cc70108908251b113a78f22dc433c244ef4.tar.bz2 scummvm-rg350-2a219cc70108908251b113a78f22dc433c244ef4.zip | |
HE 80+ speech files aren't encoded
svn-id: r14853
| -rw-r--r-- | scumm/sound.cpp | 2 |
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; } |
