[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6he.cpp,2.11,2.12

Travis Howell kirben at users.sourceforge.net
Tue Feb 10 04:20:02 CET 2004


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

Modified Files:
	script_v6he.cpp 
Log Message:

Revert var name.


Index: script_v6he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6he.cpp,v
retrieving revision 2.11
retrieving revision 2.12
diff -u -d -r2.11 -r2.12
--- script_v6he.cpp	10 Feb 2004 00:25:02 -0000	2.11
+++ script_v6he.cpp	10 Feb 2004 12:15:45 -0000	2.12
@@ -397,9 +397,11 @@
 }
 
 void ScummEngine_v6he::o6_startSound() {
-	// Seems to range between 952 - 9000
-	if (_gameId != GID_PUTTDEMO)
-		debug(2, "o6_startSound: unknown value %d", pop());
+	if (_gameId != GID_PUTTDEMO) {
+		// Seems to range between 952 - 9000
+		int offset = pop();
+		debug(2, "o6_startSound: offset %d", offset);
+	}
 
 	_sound->addSoundToQueue(pop());
 }





More information about the Scummvm-git-logs mailing list