[Scummvm-cvs-logs] CVS: scummvm/scumm/smush scumm_renderer.cpp,1.19,1.20
Max Horn
fingolfin at users.sourceforge.net
Wed Oct 23 07:03:11 CEST 2002
Update of /cvsroot/scummvm/scummvm/scumm/smush
In directory usw-pr-cvs1:/tmp/cvs-serv23572/scumm/smush
Modified Files:
scumm_renderer.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: scumm_renderer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/smush/scumm_renderer.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- scumm_renderer.cpp 15 Oct 2002 21:55:03 -0000 1.19
+++ scumm_renderer.cpp 23 Oct 2002 14:02:46 -0000 1.20
@@ -111,7 +111,7 @@
fprintf(stderr, "_nextIndex == %d\n", _nextIndex);
for(i = _mixer->_beginSlots; i < SoundMixer::NUM_CHANNELS; i++) {
- fprintf(stderr, "channel %d : %p(%ld, %d) %d %d\n", i, _channels[i].chan,
+ fprintf(stderr, "channel %d : %p(%d, %d) %d %d\n", i, _channels[i].chan,
_channels[i].chan ? _channels[i].chan->getTrackIdentifier() : -1,
_channels[i].chan ? _channels[i].chan->isTerminated() : 1,
_channels[i].first, _channels[i].mixer_index);
More information about the Scummvm-git-logs
mailing list