[Scummvm-cvs-logs] CVS: scummvm/scumm resource.cpp,1.89,1.90

Jamieson Christian jamieson630 at users.sourceforge.net
Sat May 24 19:03:03 CEST 2003


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

Modified Files:
	resource.cpp 
Log Message:
Corrected target loopback point for 'AD' conversion

Index: resource.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/resource.cpp,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -d -r1.89 -r1.90
--- resource.cpp	25 May 2003 01:48:59 -0000	1.89
+++ resource.cpp	25 May 2003 02:02:37 -0000	1.90
@@ -1203,7 +1203,7 @@
 			memcpy(ptr, "\xf0\x13\x7d\x30\00", 5); ptr += 5;	// maybe_jump
 			memcpy(ptr, "\x00\x00", 2); ptr += 2;			// cmd -> 0 means always jump
 			memcpy(ptr, "\x00\x00\x00\x00", 4); ptr += 4;	// track -> there is only one track, 0
-			memcpy(ptr, "\x00\x00\x00\x00", 4); ptr += 4;	// beat -> for now, 0
+			memcpy(ptr, "\x00\x00\x00\x01", 4); ptr += 4;	// beat -> for now, 1 (first beat)
 			// Ticks
 			*ptr++ = (byte)((jump_offset >> 12) & 0x0F);
 			*ptr++ = (byte)((jump_offset >> 8) & 0x0F);





More information about the Scummvm-git-logs mailing list