aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/supernova/supernova.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/supernova/supernova.cpp b/engines/supernova/supernova.cpp
index fc011b27e3..c54ce1cdec 100644
--- a/engines/supernova/supernova.cpp
+++ b/engines/supernova/supernova.cpp
@@ -405,8 +405,8 @@ void SupernovaEngine::renderImage(MSNImageDecoder &image, int section) {
Common::Rect sectionRect(image._section[section].x1,
image._section[section].y1,
- image._section[section].x2,
- image._section[section].y2);
+ image._section[section].x2 + 1,
+ image._section[section].y2 + 1) ;
if (image._filenumber == 1 || image._filenumber == 2) {
sectionRect.setWidth(640);
sectionRect.setHeight(480);