[Scummvm-cvs-logs] CVS: scummvm/scumm script_v2.cpp,2.5,2.6

James Brown ender at users.sourceforge.net
Sun Apr 20 10:19:04 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv19496/scumm

Modified Files:
	script_v2.cpp 
Log Message:
Oops, missed a variable read in o2_actorSet



Index: script_v2.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v2.cpp,v
retrieving revision 2.5
retrieving revision 2.6
diff -u -d -r2.5 -r2.6
--- script_v2.cpp	20 Apr 2003 17:07:25 -0000	2.5
+++ script_v2.cpp	20 Apr 2003 17:18:31 -0000	2.6
@@ -572,8 +572,10 @@
 			a->sound[0] = arg;
 			break;
 
-		case 2:		// Unknown - Init?
-			warning("o2_actorSet(%d, %d) - Init(?) Not Implemented", act, arg);
+		case 2:	{	// Unknown - Init?
+			int unk1 = fetchScriptByte();
+			warning("o2_actorSet(%d, %d, %d) - Init(?) Not Implemented", act, arg, unk1);
+		}
 			break;
 
 		case 3:		// Actor Name





More information about the Scummvm-git-logs mailing list