mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 14:51:40 +00:00
fixed actor positions in Indy3EGA
svn-id: r7086
This commit is contained in:
parent
37ff9ae0e4
commit
676dba826d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user