aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he/sprite_he.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-03-12 00:53:30 +0000
committerTravis Howell2006-03-12 00:53:30 +0000
commitf9797f3ac39008d571e8744c38e1eb1d39aec198 (patch)
tree07939ff293905c91baa2bc0cf0eadf7abd304f02 /engines/scumm/he/sprite_he.cpp
parent5bd5cef6cf80dff1db3399a3fa90078629874cab (diff)
downloadscummvm-rg350-f9797f3ac39008d571e8744c38e1eb1d39aec198.tar.gz
scummvm-rg350-f9797f3ac39008d571e8744c38e1eb1d39aec198.tar.bz2
scummvm-rg350-f9797f3ac39008d571e8744c38e1eb1d39aec198.zip
Correct mistake in md5 tables for Simon the Sorcerer 2 (DOS Floppy)
svn-id: r21219
Diffstat (limited to 'engines/scumm/he/sprite_he.cpp')
-rw-r--r--engines/scumm/he/sprite_he.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/he/sprite_he.cpp b/engines/scumm/he/sprite_he.cpp
index 8f17a89215..37d7d59e23 100644
--- a/engines/scumm/he/sprite_he.cpp
+++ b/engines/scumm/he/sprite_he.cpp
@@ -925,8 +925,8 @@ void Sprite::setGroupBounds(int spriteGroupId, int x1, int y1, int x2, int y2) {
_spriteGroups[spriteGroupId].flags |= kSGFClipBox;
_spriteGroups[spriteGroupId].bbox.left = x1;
_spriteGroups[spriteGroupId].bbox.top = y1;
- _spriteGroups[spriteGroupId].bbox.right = x2;
- _spriteGroups[spriteGroupId].bbox.bottom = y2;
+ _spriteGroups[spriteGroupId].bbox.right = x2 + 1;
+ _spriteGroups[spriteGroupId].bbox.bottom = y2 + 1;
redrawSpriteGroup(spriteGroupId);
}