[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.247,1.248
Eugene Sandulenko
sev at users.sourceforge.net
Fri Jul 2 20:07:15 CEST 2004
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24489/scumm
Modified Files:
actor.cpp
Log Message:
Fix veggie head bug in fbear. Patch attahed to bugreport #984258 is
partially attached.
Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -d -r1.247 -r1.248
--- actor.cpp 29 Jun 2004 11:02:14 -0000 1.247
+++ actor.cpp 3 Jul 2004 03:06:15 -0000 1.248
@@ -1241,6 +1241,11 @@
return;
}
+ // Based on disassembly. It seems that high byte is not used at all, though
+ // it is attached to all horizontally flipped object, like left eye.
+ if (_vm->_heversion == 60)
+ c &= 0xff;
+
costumeNeedsInit = true;
if (_vm->_features & GF_NEW_COSTUMES) {
More information about the Scummvm-git-logs
mailing list