aboutsummaryrefslogtreecommitdiff
path: root/scumm/base-costume.h
diff options
context:
space:
mode:
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;