aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--graphics/VectorRendererSpec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/VectorRendererSpec.cpp b/graphics/VectorRendererSpec.cpp
index a37c99c561..7d3cdff7c7 100644
--- a/graphics/VectorRendererSpec.cpp
+++ b/graphics/VectorRendererSpec.cpp
@@ -2429,8 +2429,8 @@ drawBevelSquareAlgClip(int x, int y, int w, int h, int bevel, PixelType top_colo
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);
ptr_x = x; ptr_y = y;