[Scummvm-cvs-logs] CVS: scummvm/queen logic.cpp,1.11,1.12
David Eriksson
twogood at users.sourceforge.net
Thu Oct 2 12:39:04 CEST 2003
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/queen graphics.cpp,1.5,1.6 graphics.h,1.4,1.5
- Next message: [Scummvm-cvs-logs] CVS: scummvm queen.vcproj,NONE,1.1 bs2.vcproj,1.5,1.6 scumm.vcproj,1.12,1.13 scummvm.sln,1.3,1.4 scummvm.vcproj,1.13,1.14 simon.vcproj,1.4,1.5 sky.vcproj,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/queen
In directory sc8-pr-cvs1:/tmp/cvs-serv4886
Modified Files:
logic.cpp
Log Message:
You did not see the previous version of this code
Index: logic.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/queen/logic.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- logic.cpp 2 Oct 2003 19:20:00 -0000 1.11
+++ logic.cpp 2 Oct 2003 19:37:51 -0000 1.12
@@ -235,10 +235,8 @@
uint16 bobnum = 0;
uint16 bobtype = 0; // 1 for animated, 0 for static
- if (obj > _numObjects) {
- debug(0, "Object index (%i) > _numObjects (%i)", obj, _numObjects);
- abort();
- }
+ if (obj > _numObjects)
+ error("Object index (%i) > _numObjects (%i)", obj, _numObjects);
uint16 room = _objectData[obj].room;
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/queen graphics.cpp,1.5,1.6 graphics.h,1.4,1.5
- Next message: [Scummvm-cvs-logs] CVS: scummvm queen.vcproj,NONE,1.1 bs2.vcproj,1.5,1.6 scumm.vcproj,1.12,1.13 scummvm.sln,1.3,1.4 scummvm.vcproj,1.13,1.14 simon.vcproj,1.4,1.5 sky.vcproj,1.5,1.6
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list