aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/cruise/mainDraw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cruise/mainDraw.cpp b/engines/cruise/mainDraw.cpp
index 61e8f8d85c..fe5454d57f 100644
--- a/engines/cruise/mainDraw.cpp
+++ b/engines/cruise/mainDraw.cpp
@@ -1211,7 +1211,7 @@ void drawSprite(int width, int height, cellStruct *currentObjPtr, const uint8 *d
int y = 0;
// Flag the given area as having been changed
- gfxModuleData_addDirtyRect(Common::Rect(xs, ys, xs + width - 1, ys + height - 1));
+ gfxModuleData_addDirtyRect(Common::Rect(xs, ys, xs + width, ys + height));
cellStruct* plWork = currentObjPtr;
int workBufferSize = height * (width / 8);