aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index f7606c78f8..adf995a9ad 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -249,7 +249,10 @@ byte CostumeRenderer::mainRoutine(int xmoveCur, int ymoveCur) {
v1.x = _outwidth - 1;
}
} else {
- skip = -1 - rect.left;
+ if (_loaded._format == 0x57)
+ skip = -8 - rect.left;
+ else
+ skip = -1 - rect.left;
if (skip <= 0)
drawFlag = 2;
else