[Scummvm-cvs-logs] CVS: scummvm/scumm wiz_he.cpp,2.12,2.13

Gregory Montoir cyx at users.sourceforge.net
Sat Feb 26 20:21:34 CET 2005


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

Modified Files:
	wiz_he.cpp 
Log Message:
correction, WIZH tag is LE

Index: wiz_he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/wiz_he.cpp,v
retrieving revision 2.12
retrieving revision 2.13
diff -u -d -r2.12 -r2.13
--- wiz_he.cpp	27 Feb 2005 03:23:16 -0000	2.12
+++ wiz_he.cpp	27 Feb 2005 04:14:54 -0000	2.13
@@ -1292,9 +1292,9 @@
 		WRITE_BE_UINT32(res_data, res_size); res_data += 4;
 		WRITE_BE_UINT32(res_data, 'WIZH'); res_data += 4;
 		WRITE_BE_UINT32(res_data, 0x14); res_data += 4;
-		WRITE_BE_UINT32(res_data, 0); res_data += 4;
-		WRITE_BE_UINT32(res_data, img_w); res_data += 4;
-		WRITE_BE_UINT32(res_data, img_h); res_data += 4;
+		WRITE_LE_UINT32(res_data, 0); res_data += 4;
+		WRITE_LE_UINT32(res_data, img_w); res_data += 4;
+		WRITE_LE_UINT32(res_data, img_h); res_data += 4;
 		if (flags & 1) {
 			WRITE_BE_UINT32(res_data, 'RGBS'); res_data += 4;
 			WRITE_BE_UINT32(res_data, 0x308); res_data += 4;





More information about the Scummvm-git-logs mailing list