aboutsummaryrefslogtreecommitdiff
path: root/scumm/akos.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-09-13 13:07:35 +0000
committerTravis Howell2004-09-13 13:07:35 +0000
commitf4d609d72884fc19d48325bed5d0fe17cb9824b5 (patch)
tree22a8e4f57c734e1821742713ee90c6a2bce05c78 /scumm/akos.cpp
parent831e967e9f2360db2b8fa990d185fb9a19771091 (diff)
downloadscummvm-rg350-f4d609d72884fc19d48325bed5d0fe17cb9824b5.tar.gz
scummvm-rg350-f4d609d72884fc19d48325bed5d0fe17cb9824b5.tar.bz2
scummvm-rg350-f4d609d72884fc19d48325bed5d0fe17cb9824b5.zip
Correction
svn-id: r15095
Diffstat (limited to 'scumm/akos.cpp')
-rw-r--r--scumm/akos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp
index bee44d5d01..4f758057c3 100644
--- a/scumm/akos.cpp
+++ b/scumm/akos.cpp
@@ -1233,8 +1233,8 @@ byte AkosRenderer::codec32(int xmoveCur, int ymoveCur) {
src.bottom = _height - 1;
dst.top = _actorY + ymoveCur;
- dst.right = dst.left + _width - 1;
- dst.bottom = dst.top + _height - 1;
+ dst.right = dst.left + _width;
+ dst.bottom = dst.top + _height;
dst.clip(_clipOverride);