[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.24,1.25
Max Horn
fingolfin at users.sourceforge.net
Wed Oct 23 07:03:13 CEST 2002
Update of /cvsroot/scummvm/scummvm/simon
In directory usw-pr-cvs1:/tmp/cvs-serv23572/simon
Modified Files:
simon.cpp
Log Message:
cleaning up scummsys.h a bit (in preparation of using configure eventually). Most notable, uint32 etc. will be 'unsigned int' not 'unsigned long'. Except for 16 bit systems that should be right, and configure will replace this by a proper check for data type sizes anyway
Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- simon.cpp 23 Oct 2002 08:40:37 -0000 1.24
+++ simon.cpp 23 Oct 2002 14:02:46 -0000 1.25
@@ -4794,7 +4794,7 @@
_effects_file->read(&size, 4);
// FIXME - do we really want to read a block of 4 bytes, ignoring endian issues?
- printf("FOO %08lx 7 %ld \n", size, size & 0xffffff);
+ printf("FOO %08x / %d (please report this to Fingolfin)\n", size, size & 0xffffff);
size = size & 0xffffff;
_effects_file->seek(-1, SEEK_CUR);
_effects_file->read(&voc_block_hdr, sizeof(voc_block_hdr));
More information about the Scummvm-git-logs
mailing list