diff options
-rw-r--r-- | scumm/akos.cpp | 4 |
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); |