[Scummvm-cvs-logs] SF.net SVN: scummvm:[45359] scummvm/trunk/engines/scumm/sound.cpp
Kirben at users.sourceforge.net
Kirben at users.sourceforge.net
Sat Oct 24 14:33:19 CEST 2009
Revision: 45359
http://scummvm.svn.sourceforge.net/scummvm/?rev=45359&view=rev
Author: Kirben
Date: 2009-10-24 12:33:18 +0000 (Sat, 24 Oct 2009)
Log Message:
-----------
Correct error in CD music table for PCE version of Loom.
Modified Paths:
--------------
scummvm/trunk/engines/scumm/sound.cpp
Modified: scummvm/trunk/engines/scumm/sound.cpp
===================================================================
--- scummvm/trunk/engines/scumm/sound.cpp 2009-10-24 09:51:28 UTC (rev 45358)
+++ scummvm/trunk/engines/scumm/sound.cpp 2009-10-24 12:33:18 UTC (rev 45359)
@@ -166,7 +166,7 @@
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);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list