aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'graphics')
-rw-r--r--graphics/VectorRendererSpec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/VectorRendererSpec.cpp b/graphics/VectorRendererSpec.cpp
index ef7d672fd0..a37c99c561 100644
--- a/graphics/VectorRendererSpec.cpp
+++ b/graphics/VectorRendererSpec.cpp
@@ -2371,8 +2371,8 @@ drawBevelSquareAlg(int x, int y, int w, int h, int bevel, PixelType top_color, P
x = MAX(x - bevel, 0);
y = MAX(y - bevel, 0);
- w = MIN(w + (bevel * 2), (int)_activeSurface->w);
- h = MIN(h + (bevel * 2), (int)_activeSurface->h);
+ w = MIN(x + w + (bevel * 2), (int)_activeSurface->w) - x;
+ h = MIN(y + h + (bevel * 2), (int)_activeSurface->h) - y;
ptr_left = (PixelType *)_activeSurface->getBasePtr(x, y);
i = bevel;