aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/gfx.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index d4bff39f31..648bf6bec9 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -1364,14 +1364,15 @@ void Gdi::drawBMAPObject(const byte *ptr, VirtScreen *vs, int obj, int x, int y,
copyWizImage(dst, ptr, vs->w, vs->h, x - scrX, y, w, h, &rScreen);
}
- Common::Rect rect1(x, y, w, h);
+ Common::Rect rect1(x, y, x + w, y + h);
Common::Rect rect2(scrX, 0, vs->w + scrX, vs->h);
- if (rect1.intersects(rect2) && rect1.top <= rect1.bottom && rect1.left <= rect1.right) {
+ if (rect1.intersects(rect2)) {
rect1.left -= rect2.left;
rect1.right -= rect2.left;
rect1.top -= rect2.top;
rect1.bottom -= rect2.top;
+
copyVirtScreenBuffers(rect1);
}
}