diff options
| -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 4f76c0e451..427f411f9b 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -1077,7 +1077,7 @@ ScummFile *Sound::openSfxFile() {  	}  	if (!file->isOpen()) { -		if (_vm->_heversion >= 70) { +		if ((_vm->_heversion == 60 && _vm->_features & GF_MACINTOSH) || (_vm->_heversion >= 70)) {  			sprintf(buf, "%s.he2", _vm->getGameName());  			if (_vm->_heMacFileNameIndex > 0) {  | 
