[Scummvm-cvs-logs] CVS: scummvm/scumm base-costume.h,1.2,1.3

Max Horn fingolfin at users.sourceforge.net
Wed Apr 23 01:27:13 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv31972

Modified Files:
	base-costume.h 
Log Message:
fixed actor positions in Indy3EGA

Index: base-costume.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/base-costume.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- base-costume.h	6 Mar 2003 21:45:52 -0000	1.2
+++ base-costume.h	23 Apr 2003 08:26:54 -0000	1.3
@@ -77,7 +77,12 @@
 		int i;
 		byte result = 0;
 	
-		_xmove = _ymove = 0;
+		if (_vm->_features & GF_OLD_BUNDLE) {
+			_xmove = -72;
+			_ymove = -100;
+		} else {
+			_xmove = _ymove = 0;
+		}
 		for (i = 0; i < 16; i++)
 			result |= drawLimb(cost, i);
 		return result;





More information about the Scummvm-git-logs mailing list