aboutsummaryrefslogtreecommitdiff
path: root/scumm/sprite_he.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/sprite_he.cpp')
-rw-r--r--scumm/sprite_he.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/sprite_he.cpp b/scumm/sprite_he.cpp
index f6ea8937b4..399afcebfd 100644
--- a/scumm/sprite_he.cpp
+++ b/scumm/sprite_he.cpp
@@ -1039,16 +1039,16 @@ void ScummEngine_v90he::spritesBlitToScreen() {
firstLoop = false;
refreshScreen = true;
} else {
- if (xmin < spi->bbox.left) {
+ if (xmin > spi->bbox.left) {
xmin = spi->bbox.left;
}
- if (ymin < spi->bbox.top) {
+ if (ymin > spi->bbox.top) {
ymin = spi->bbox.top;
}
- if (xmax > spi->bbox.right) {
+ if (xmax < spi->bbox.right) {
xmax = spi->bbox.right;
}
- if (ymax > spi->bbox.bottom) {
+ if (ymax < spi->bbox.bottom) {
ymax = spi->bbox.bottom;
}
refreshScreen = true;