aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorTravis Howell2009-10-24 12:33:18 +0000
committerTravis Howell2009-10-24 12:33:18 +0000
commitff78169680249e3a8f48b8198f08b2b8aadac496 (patch)
tree84dfe66a7aa8f9ba3bd8be56966311f28bcda463 /engines/scumm
parentcc19ed27a1ef411886ca22ca09e0b52c355e39b9 (diff)
downloadscummvm-rg350-ff78169680249e3a8f48b8198f08b2b8aadac496.tar.gz
scummvm-rg350-ff78169680249e3a8f48b8198f08b2b8aadac496.tar.bz2
scummvm-rg350-ff78169680249e3a8f48b8198f08b2b8aadac496.zip
Correct error in CD music table for PCE version of Loom.
svn-id: r45359
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/sound.cpp b/engines/scumm/sound.cpp
index 177847b204..789d2cbbc2 100644
--- a/engines/scumm/sound.cpp
+++ b/engines/scumm/sound.cpp
@@ -166,7 +166,7 @@ void Sound::playSound(int soundID) {
if (_vm->_game.id == GID_LOOM && _vm->_game.platform == Common::kPlatformPCEngine) {
if (soundID >= 13 && soundID <= 32) {
- static const char tracks[20] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 19, 20, 21};
+ static const char tracks[20] = {3, 4, 5, 7, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 19, 20, 21};
_currentCDSound = soundID;
playCDTrack(tracks[soundID - 13], 1, 0, 0);