From ff78169680249e3a8f48b8198f08b2b8aadac496 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 24 Oct 2009 12:33:18 +0000 Subject: Correct error in CD music table for PCE version of Loom. svn-id: r45359 --- engines/scumm/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/scumm') 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); -- cgit v1.2.3