aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Hesse2008-05-11 02:44:21 +0000
committerSven Hesse2008-05-11 02:44:21 +0000
commit985f073376736e9886d3cc16f546e81217b8d28c (patch)
tree95f5abbfafda717bd0fcd1f42789be60a6e2a518
parent82dcbd115a7306dd82020876611877724bb264f5 (diff)
downloadscummvm-rg350-985f073376736e9886d3cc16f546e81217b8d28c.tar.gz
scummvm-rg350-985f073376736e9886d3cc16f546e81217b8d28c.tar.bz2
scummvm-rg350-985f073376736e9886d3cc16f546e81217b8d28c.zip
Fixing compilation
svn-id: r31995
-rw-r--r--graphics/VectorRenderer.cpp2
1 files changed, 1 insertions, 1 deletions
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 {