[Scummvm-cvs-logs] CVS: scummvm/scumm object.cpp,1.83,1.84
Max Horn
fingolfin at users.sourceforge.net
Mon Apr 28 11:29:16 CEST 2003
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm object.cpp,1.82,1.83 scummvm.cpp,2.109,2.110
- Next message: [Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.59,2.60 script_v5.cpp,1.50,1.51 scummvm.cpp,2.110,2.111
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv32573
Modified Files:
object.cpp
Log Message:
ooops, seems the 1 -> 16 changed caused a regression in Zak256 (and I bet in Indy3VGA, too). Reverting this change partially. If anybody experiences problem selecting certain objects in other GF_SMALL_HEADER, tell me
Index: object.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/object.cpp,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -d -r1.83 -r1.84
--- object.cpp 28 Apr 2003 18:19:44 -0000 1.83
+++ object.cpp 28 Apr 2003 18:28:43 -0000 1.84
@@ -638,6 +638,8 @@
od->y_pos = ((*(ptr + 10)) & 0x7F) << 3;
od->parentstate = (*(ptr + 10) & 0x80) ? 16 : 0;
+ if (_features & GF_OLD256 && od->parentstate)
+ od->parentstate = 1;
od->width = *(ptr + 11) << 3;
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm object.cpp,1.82,1.83 scummvm.cpp,2.109,2.110
- Next message: [Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.59,2.60 script_v5.cpp,1.50,1.51 scummvm.cpp,2.110,2.111
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list