Fixing compilation

svn-id: r31995
This commit is contained in:
Sven Hesse 2008-05-11 02:44:21 +00:00
parent 82dcbd115a
commit 985f073376

View file

@ -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 {