aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2009-11-05 11:40:33 +0000
committerTravis Howell2009-11-05 11:40:33 +0000
commit25025f58f0bbf06b1969bd09ede36e4eaff1a706 (patch)
treede869a4751c0f07afff212ad3de878ec36e73994
parent0b8a2ff617ee1b1901fd8264daad1083a1c7c2d3 (diff)
downloadscummvm-rg350-25025f58f0bbf06b1969bd09ede36e4eaff1a706.tar.gz
scummvm-rg350-25025f58f0bbf06b1969bd09ede36e4eaff1a706.tar.bz2
scummvm-rg350-25025f58f0bbf06b1969bd09ede36e4eaff1a706.zip
Add fix from Tobias, for bobbing Bobbin in PCE version of Loom.
svn-id: r45685
-rw-r--r--engines/scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/costume.cpp b/engines/scumm/costume.cpp
index e6e5a2829a..5e980f8fa9 100644
--- a/engines/scumm/costume.cpp
+++ b/engines/scumm/costume.cpp
@@ -870,7 +870,7 @@ byte ClassicCostumeRenderer::drawLimb(const Actor *a, int limb) {
xmoveCur = _xmove + PCE_SIGNED(_srcptr[3]);
ymoveCur = _ymove + PCE_SIGNED(_srcptr[4]);
_xmove += PCE_SIGNED(_srcptr[5]);
- _ymove += PCE_SIGNED(_srcptr[6]);
+ _ymove -= PCE_SIGNED(_srcptr[6]);
_srcptr += 7;
} else if (_loaded._format == 0x57) {
_width = _srcptr[0] * 8;