[Scummvm-cvs-logs] CVS: scummvm/scumm script_v72he.cpp,2.102,2.103 script_v80he.cpp,2.29,2.30

Travis Howell kirben at users.sourceforge.net
Fri Sep 17 18:22:12 CEST 2004


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

Modified Files:
	script_v72he.cpp script_v80he.cpp 
Log Message:

Neeed to know where polygons are renderered


Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.102
retrieving revision 2.103
diff -u -d -r2.102 -r2.103
--- script_v72he.cpp	17 Sep 2004 11:20:37 -0000	2.102
+++ script_v72he.cpp	18 Sep 2004 01:21:14 -0000	2.103
@@ -1372,6 +1372,9 @@
 }
 
 void ScummEngine_v72he::drawWizImage(int restype, int resnum, int state, int x1, int y1, int flags) {
+	if (flags & 64)
+		error("Polygon Wiz image is unimplemented");
+
 	const uint8 *dataPtr = getResourceAddress(restype, resnum);
 	if (dataPtr) {
 		const uint8 *wizh = findWrappedBlock(MKID('WIZH'), dataPtr, state, 0);

Index: script_v80he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v80he.cpp,v
retrieving revision 2.29
retrieving revision 2.30
diff -u -d -r2.29 -r2.30
--- script_v80he.cpp	17 Sep 2004 11:20:37 -0000	2.29
+++ script_v80he.cpp	18 Sep 2004 01:21:14 -0000	2.30
@@ -604,6 +604,8 @@
 }
 
 void ScummEngine_v80he::o80_drawWizPolygon() {
+	error("o80_drawWizPolygon");
+
 	int xy1 = pop();
 	int resnum = pop();
 





More information about the Scummvm-git-logs mailing list