[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6.cpp,1.103,1.104

Max Horn fingolfin at users.sourceforge.net
Sun May 4 11:32:14 CEST 2003


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

Modified Files:
	script_v6.cpp 
Log Message:
oops, forget to remove hack I used to test this ;-)

Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -d -r1.103 -r1.104
--- script_v6.cpp	4 May 2003 18:27:55 -0000	1.103
+++ script_v6.cpp	4 May 2003 18:28:32 -0000	1.104
@@ -423,14 +423,14 @@
 	if (ah->type == 4) {
 		ah->data[base] = value;
 	} else if (_features & GF_AFTER_V8) {
-#if 1 || defined(SCUMM_NEED_ALIGNMENT)
+#if defined(SCUMM_NEED_ALIGNMENT)
 		uint32 tmp = TO_LE_32(value);
 		memcpy(&ah->data[base*4], &tmp, 4);
 #else
 		((uint32 *)ah->data)[base] = TO_LE_32(value);
 #endif
 	} else {
-#if 1 || defined(SCUMM_NEED_ALIGNMENT)
+#if defined(SCUMM_NEED_ALIGNMENT)
 		uint16 tmp = TO_LE_16(value);
 		memcpy(&ah->data[base*2], &tmp, 2);
 #else





More information about the Scummvm-git-logs mailing list