From 676dba826d1aa3597be3352836cf9a58d0d400bb Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 23 Apr 2003 08:26:54 +0000 Subject: fixed actor positions in Indy3EGA svn-id: r7086 --- scumm/base-costume.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'scumm/base-costume.h') diff --git a/scumm/base-costume.h b/scumm/base-costume.h index 9e258b7676..172ac92697 100644 --- a/scumm/base-costume.h +++ b/scumm/base-costume.h @@ -77,7 +77,12 @@ public: 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; -- cgit v1.2.3