aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/design.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage/design.cpp')
-rw-r--r--engines/wage/design.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp
index bafb3ad63f..0b9db3b2a2 100644
--- a/engines/wage/design.cpp
+++ b/engines/wage/design.cpp
@@ -560,13 +560,13 @@ void Design::drawThickLine (int x1, int y1, int x2, int y2, int thick, int color
if (dx == 0) {
if (y1 > y2)
SWAP(y1, y2);
- Common::Rect r(x1, y1, x1 + thick, y2);
+ Common::Rect r(x1, y1, x1 + thick - 1, y2);
drawFilledRect(r, color, plotProc, data);
return;
} else if (dy == 0) {
if (x1 > x2)
SWAP(x1, x2);
- Common::Rect r(x1, y1, x2, y1 + thick);
+ Common::Rect r(x1, y1, x2, y1 + thick - 1);
drawFilledRect(r, color, plotProc, data);
return;
}