aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/actor.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 5dffa37654..1dfa6e9347 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -906,6 +906,10 @@ void Actor::drawActorCostume() {
bcr->_actorX = x - _vm->virtscr[0].xstart;
bcr->_actorY = y - elevation;
+ if (_vm->_version <= 2) {
+ // We have to adjust the x position by one strip (8 pixels) in V2 games
+ bcr->_actorX += 8;
+ }
bcr->_scaleX = scalex;
bcr->_scaleY = scaley;