From 985f073376736e9886d3cc16f546e81217b8d28c Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Sun, 11 May 2008 02:44:21 +0000 Subject: Fixing compilation svn-id: r31995 --- graphics/VectorRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/VectorRenderer.cpp b/graphics/VectorRenderer.cpp index 1da0125346..7a3fd7b674 100644 --- a/graphics/VectorRenderer.cpp +++ b/graphics/VectorRenderer.cpp @@ -497,7 +497,7 @@ drawRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType color, bool ptr_fill += p * r; while (short_h-- >= 0) { Common::set_to(ptr_fill, ptr_fill + Base::_strokeWidth, color); - Common::set_to(ptr_fill + w - _strokeWidth + 1, ptr_fill + w + 1, color); + Common::set_to(ptr_fill + w - Base::_strokeWidth + 1, ptr_fill + w + 1, color); ptr_fill += p; } } else { -- cgit v1.2.3