aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-06-04 13:33:50 +0000
committerTravis Howell2003-06-04 13:33:50 +0000
commit97aaab94108c3ddbac82a130ddb4f4050867a880 (patch)
treee8db4ff304c10212a5269e487308a9dc76e0e9cc /scumm
parentbc9a04b0cf4a9bce8c1cec63f222a8c671d29b66 (diff)
downloadscummvm-rg350-97aaab94108c3ddbac82a130ddb4f4050867a880.tar.gz
scummvm-rg350-97aaab94108c3ddbac82a130ddb4f4050867a880.tar.bz2
scummvm-rg350-97aaab94108c3ddbac82a130ddb4f4050867a880.zip
Don't attempt to play music/sfx on v1 games
svn-id: r8292
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 847cd90025..22f1bf2c08 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -390,7 +390,7 @@ void Sound::playSound(int soundID) {
}
- if (_scumm->_features & GF_OLD_BUNDLE) {
+ if (_scumm->_features & GF_OLD_BUNDLE && !(_scumm->_features & GF_AFTER_V1)) {
// FIXME: support amiga sounds
uint16 amigatest;
amigatest = READ_LE_UINT16(ptr + 12);