[Scummvm-cvs-logs] CVS: scummvm/sound voc.cpp,1.19,1.20

Travis Howell kirben at users.sourceforge.net
Mon Aug 2 20:25:05 CEST 2004


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

Modified Files:
	voc.cpp 
Log Message:

Add invalid version used by French Simon2


Index: voc.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sound/voc.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- voc.cpp	31 Jul 2004 11:46:58 -0000	1.19
+++ voc.cpp	3 Aug 2004 03:18:51 -0000	1.20
@@ -75,7 +75,7 @@
 	int16 version = FROM_LE_16(fileHeader.version);
 	int16 code = FROM_LE_16(fileHeader.id);
 	assert(offset == sizeof(VocFileHeader));
-	assert(version == 0x010A || version == 0x0114);
+	assert(version == 0x010A || version == 0x0114 || version == 0x0100);
 	assert(code == ~version + 0x1234);
 
 	int len;





More information about the Scummvm-git-logs mailing list