diff options
-rw-r--r-- | engines/draci/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/music.cpp b/engines/draci/music.cpp index 3fa380196a..fc44402bb8 100644 --- a/engines/draci/music.cpp +++ b/engines/draci/music.cpp @@ -53,7 +53,7 @@ MusicPlayer::MusicPlayer(const char *pathMask) : _pathMask(pathMask), _isGM(fals void MusicPlayer::sendToChannel(byte channel, uint32 b) { if (!_channelsTable[channel]) { - _channelsTable[channel] = (channel == 9) ? _driver->getPercussionChannel() : _driver->allocateChannel(); + _channelsTable[channel] = (channel == 15) ? _driver->getPercussionChannel() : _driver->allocateChannel(); // If a new channel is allocated during the playback, make sure // its volume is correctly initialized. if (_channelsTable[channel]) |