[Scummvm-cvs-logs] CVS: scummvm-new/scumm actor.cpp,1.1.1.1,1.2
Max Horn
fingolfin at users.sourceforge.net
Fri Aug 23 15:47:02 CEST 2002
Update of /cvsroot/scummvm/scummvm-new/scumm
In directory usw-pr-cvs1:/tmp/cvs-serv8951/scumm
Modified Files:
actor.cpp
Log Message:
fix for some Loom oddities, might break other stuff -> in that case please tell me so that I can find a correct solution
Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm-new/scumm/actor.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- actor.cpp 21 Aug 2002 16:07:25 -0000 1.1.1.1
+++ actor.cpp 23 Aug 2002 22:46:09 -0000 1.2
@@ -183,7 +183,12 @@
bool flipX;
bool flipY;
- if (!ignoreBoxes) {
+ // FIXME - why was this here? It breaks some animations in LoomCD, and logical,
+ // why should we not honor box flags when ignoreBoxes is on? If this change
+ // breaks anything, or if you know why the if() was in originally, please
+ // tell this to Fingolfin.
+ //if (!ignoreBoxes) {
+ if (1) {
specdir = _vm->_extraBoxFlags[walkbox];
if (specdir) {
if (specdir & 0x8000) {
More information about the Scummvm-git-logs
mailing list