[Scummvm-cvs-logs] CVS: scummvm actor.cpp,1.113,1.114
Max Horn
fingolfin at users.sourceforge.net
Fri Aug 23 15:47:02 CEST 2002
Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv8896
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/actor.cpp,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -d -r1.113 -r1.114
--- actor.cpp 19 Aug 2002 17:23:47 -0000 1.113
+++ actor.cpp 23 Aug 2002 22:46:05 -0000 1.114
@@ -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