[Scummvm-cvs-logs] CVS: scummvm/scumm script_v7he.cpp,2.68,2.69

Travis Howell kirben at users.sourceforge.net
Fri Sep 10 15:00:12 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1630/scumm

Modified Files:
	script_v7he.cpp 
Log Message:

Missed line


Index: script_v7he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v7he.cpp,v
retrieving revision 2.68
retrieving revision 2.69
diff -u -d -r2.68 -r2.69
--- script_v7he.cpp	9 Sep 2004 14:07:51 -0000	2.68
+++ script_v7he.cpp	10 Sep 2004 10:43:10 -0000	2.69
@@ -514,7 +514,7 @@
 		break;
 
 	case 230:
-		_heSndTimer = pop();
+		_heSndChannel = pop();
 		break;
 
 	case 231:
@@ -525,7 +525,7 @@
 		_heSndSoundId = pop();
 		_heSndOffset = 0;
 		_heSndSoundFreq = 11025;
-		_heSndTimer = VAR(VAR_MUSIC_TIMER);
+		_heSndChannel = VAR(VAR_MUSIC_CHANNEL);
 		break;
 
 	case 245:
@@ -533,9 +533,9 @@
 		break;
 
 	case 255:
-		// _sound->addSoundToQueue(_heSndSoundId, _heSndOffset, _heSndTimer, _heSndLoop);
+		// _sound->addSoundToQueue(_heSndSoundId, _heSndOffset, _heSndChannel, _heSndLoop);
 		_sound->addSoundToQueue(_heSndSoundId, _heSndOffset);
-		debug(2, "o7_startSound stub (%d, %d, %d, %d)", _heSndSoundId, _heSndOffset, _heSndTimer, _heSndLoop);
+		debug(2, "o7_startSound stub (%d, %d, %d, %d)", _heSndSoundId, _heSndOffset, _heSndChannel, _heSndLoop);
 		_heSndLoop = 0;
 		break;
 





More information about the Scummvm-git-logs mailing list