[Scummvm-cvs-logs] CVS: scummvm/scumm object.cpp,1.166.2.1,1.166.2.2
Travis Howell
kirben at users.sourceforge.net
Thu Feb 19 22:47:29 CET 2004
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3703/scumm
Modified Files:
Tag: branch-0-6-0
object.cpp
Log Message:
Add back fix for bug #738352 and restrict to needed games only (Checked against disasm.)
Index: object.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/object.cpp,v
retrieving revision 1.166.2.1
retrieving revision 1.166.2.2
diff -u -d -r1.166.2.1 -r1.166.2.2
--- object.cpp 18 Feb 2004 11:45:19 -0000 1.166.2.1
+++ object.cpp 20 Feb 2004 06:35:01 -0000 1.166.2.2
@@ -350,7 +350,8 @@
do {
a = od->parentstate;
if (!od->parent) {
- drawObject(i, arg);
+ if ((_version <= 6 && !(_features & GF_HUMONGOUS)) || od->fl_object_index == 0)
+ drawObject(i, arg);
break;
}
od = &_objs[od->parent];
More information about the Scummvm-git-logs
mailing list