diff options
author | Filippos Karapetis | 2010-12-07 00:47:05 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-12-07 00:47:05 +0000 |
commit | de2ef2edc0ea277b4ea5db77a109199c18ff0dae (patch) | |
tree | 583d3d52482f25534487de0e8c38f2996dfef75d /engines/sci/sound | |
parent | 8ca0b867e0f5127cf192b7cb7a7c12216a9545a4 (diff) | |
download | scummvm-rg350-de2ef2edc0ea277b4ea5db77a109199c18ff0dae.tar.gz scummvm-rg350-de2ef2edc0ea277b4ea5db77a109199c18ff0dae.tar.bz2 scummvm-rg350-de2ef2edc0ea277b4ea5db77a109199c18ff0dae.zip |
SCI: Removed the system strings code and replaced it with a much more simplified version, thus greatly simplifying handling of system strings
svn-id: r54805
Diffstat (limited to 'engines/sci/sound')
-rw-r--r-- | engines/sci/sound/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp index d72af2b006..afcf810dc2 100644 --- a/engines/sci/sound/music.cpp +++ b/engines/sci/sound/music.cpp @@ -343,7 +343,7 @@ int16 SciMusic::tryToOwnChannel(MusicEntry *caller, int16 bestChannel) { } // otherwise look for unused channel for (int channelNr = _driverFirstChannel; channelNr < 15; channelNr++) { - if (channelNr == 9) // never map to channel 9 (precussion) + if (channelNr == 9) // never map to channel 9 (percussion) continue; if (!_usedChannel[channelNr]) { _usedChannel[channelNr] = caller; |