aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-04-24 10:26:31 +0000
committerTravis Howell2005-04-24 10:26:31 +0000
commit29532320c198241d598206e182bc5cfa4c271424 (patch)
treec43e381a5d9794f2d8e7f42421631dceb785c5d1 /scumm/sound.cpp
parent637e86e5b4888e3c6ba6256c74900deac6c5313c (diff)
downloadscummvm-rg350-29532320c198241d598206e182bc5cfa4c271424.tar.gz
scummvm-rg350-29532320c198241d598206e182bc5cfa4c271424.tar.bz2
scummvm-rg350-29532320c198241d598206e182bc5cfa4c271424.zip
Corection a few more heversion checks, caused music regression.
svn-id: r17785
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 0f8009f422..63a573f990 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -1133,7 +1133,7 @@ ScummFile *Sound::openSfxFile() {
}
if (!file->isOpen()) {
- if ((_vm->_heversion == 60 && _vm->_platform == Common::kPlatformMacintosh) || (_vm->_heversion >= 70)) {
+ if ((_vm->_heversion <= 61 && _vm->_platform == Common::kPlatformMacintosh) || (_vm->_heversion >= 70)) {
sprintf(buf, "%s.he2", _vm->getGameName());
} else {
sprintf(buf, "%s.tlk", _vm->getGameName());