[Scummvm-cvs-logs] CVS: scummvm/scumm script_v8.cpp,2.157,2.158 script_v6.cpp,1.114,1.115

Max Horn fingolfin at users.sourceforge.net
Thu May 15 15:58:11 CEST 2003


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

Modified Files:
	script_v8.cpp script_v6.cpp 
Log Message:
output a warning if ignoreTurns is set (so that we can find out where it is used)

Index: script_v8.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v8.cpp,v
retrieving revision 2.157
retrieving revision 2.158
diff -u -d -r2.157 -r2.158
--- script_v8.cpp	15 May 2003 22:30:31 -0000	2.157
+++ script_v8.cpp	15 May 2003 22:57:53 -0000	2.158
@@ -1128,6 +1128,7 @@
 		a->setAnimVar(pop(), i);
 		break;
 	case 0x7C:		// SO_ACTOR_IGNORE_TURNS_ON Make actor ignore turns
+		warning("ignoreTurns not yet implemented");
 		a->ignoreTurns = true;
 		break;
 	case 0x7D:		// SO_ACTOR_IGNORE_TURNS_OFF Make actor follow turns

Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- script_v6.cpp	14 May 2003 20:37:53 -0000	1.114
+++ script_v6.cpp	15 May 2003 22:57:53 -0000	1.115
@@ -1711,6 +1711,7 @@
 		a->setAnimVar(pop(), i);
 		break;
 	case 215:
+		warning("ignoreTurns not yet implemented");
 		a->ignoreTurns = true;
 		break;
 	case 216:





More information about the Scummvm-git-logs mailing list