mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21: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;
|
int i;
|
||||||
byte result = 0;
|
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++)
|
for (i = 0; i < 16; i++)
|
||||||
result |= drawLimb(cost, i);
|
result |= drawLimb(cost, i);
|
||||||
return result;
|
return result;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user