aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/sound.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 75ab56c869..b21e8a32ab 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -490,7 +490,7 @@ void Sound::playSound(int soundID, int heOffset, int heChannel, int heFlags) {
}
break;
case 1:
- case 255: // 255 is the type used in Indy3 FM-TOWNS
+ 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);
@@ -514,8 +514,7 @@ void Sound::playSound(int soundID, int heOffset, int heChannel, int heFlags) {
_currentCDSound = soundID;
break;
- default: // Unsupported sound type
- error("Unsupported sound sub-type %d", type);
+ default:
break;
}
}