aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}