aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
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 55b629defa..54dd797f45 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -499,7 +499,6 @@ void Sound::playSound(int soundID, int heOffset, int heChannel, int heFlags) {
}
break;
case 1:
- case 255: // 255 is the type used by sound resource 40 in Indy3 FM-TOWNS
// Music (Euphony format)
if (_vm->_musicEngine)
_vm->_musicEngine->startSound(soundID);
@@ -524,6 +523,7 @@ void Sound::playSound(int soundID, int heOffset, int heChannel, int heFlags) {
_currentCDSound = soundID;
break;
default:
+ // All other sound types are ignored
break;
}
}