aboutsummaryrefslogtreecommitdiff
path: root/scumm/base-costume.h
diff options
context:
space:
mode:
authorMax Horn2003-04-23 08:26:54 +0000
committerMax Horn2003-04-23 08:26:54 +0000
commit676dba826d1aa3597be3352836cf9a58d0d400bb (patch)
tree404bcf35ec0dfd82e51c59909b4897d735f98841 /scumm/base-costume.h
parent37ff9ae0e47955675d9c13a3c6978e013aa67bbc (diff)
downloadscummvm-rg350-676dba826d1aa3597be3352836cf9a58d0d400bb.tar.gz
scummvm-rg350-676dba826d1aa3597be3352836cf9a58d0d400bb.tar.bz2
scummvm-rg350-676dba826d1aa3597be3352836cf9a58d0d400bb.zip
fixed actor positions in Indy3EGA
svn-id: r7086
Diffstat (limited to 'scumm/base-costume.h')
-rw-r--r--scumm/base-costume.h7
1 files changed, 6 insertions, 1 deletions
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;