[Scummvm-cvs-logs] CVS: scummvm/sword1 credits.cpp,1.2,1.3 module.mk,1.6,1.7
Travis Howell
kirben at users.sourceforge.net
Sat Dec 4 19:21:01 CET 2004
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/sword1 credits.cpp,1.1,1.2 credits.h,1.1,1.2 module.mk,1.5,1.6
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword1 animation.h,1.14,1.15 screen.cpp,1.47,1.48
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/sword1
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25531/sword1
Modified Files:
credits.cpp module.mk
Log Message:
Warning fix from LavosSpawn
Index: credits.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword1/credits.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- credits.cpp 5 Dec 2004 03:11:07 -0000 1.2
+++ credits.cpp 5 Dec 2004 03:20:04 -0000 1.3
@@ -327,7 +327,7 @@
dstPos += len;
srcPos += 2;
if (srcPos < srcBuf + size) {
- uint8 len = *srcPos++;
+ len = *srcPos++;
memcpy(dstPos, srcPos, len);
dstPos += len;
srcPos += len;
Index: module.mk
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sword1/module.mk,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- module.mk 5 Dec 2004 03:11:07 -0000 1.6
+++ module.mk 5 Dec 2004 03:20:04 -0000 1.7
@@ -2,8 +2,8 @@
MODULE_OBJS := \
sword1/animation.o \
- sword1/credits.o \
sword1/control.o \
+ sword1/credits.o \
sword1/debug.o \
sword1/eventman.o \
sword1/logic.o \
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/sword1 credits.cpp,1.1,1.2 credits.h,1.1,1.2 module.mk,1.5,1.6
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sword1 animation.h,1.14,1.15 screen.cpp,1.47,1.48
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list