aboutsummaryrefslogtreecommitdiff
path: root/graphics/VectorRenderer.h
diff options
context:
space:
mode:
authorVicent Marti2008-05-11 14:05:59 +0000
committerVicent Marti2008-05-11 14:05:59 +0000
commitf19480b74090159296be1aa608591123e917dd36 (patch)
tree9cb98fdee57186d46cf1af2499927a978acc8dbb /graphics/VectorRenderer.h
parent373efe438a08113b5f6ba4aec7360b5e17906e40 (diff)
downloadscummvm-rg350-f19480b74090159296be1aa608591123e917dd36.tar.gz
scummvm-rg350-f19480b74090159296be1aa608591123e917dd36.tar.bz2
scummvm-rg350-f19480b74090159296be1aa608591123e917dd36.zip
- Aliased rounded squares + stroking.
svn-id: r32021
Diffstat (limited to 'graphics/VectorRenderer.h')
-rw-r--r--graphics/VectorRenderer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/VectorRenderer.h b/graphics/VectorRenderer.h
index 1cf7337c84..bed1e337ca 100644
--- a/graphics/VectorRenderer.h
+++ b/graphics/VectorRenderer.h
@@ -351,7 +351,7 @@ protected:
*/
virtual void drawLineAlg(int x1, int y1, int x2, int y2, int dx, int dy, PixelType color);
virtual void drawCircleAlg(int x, int y, int r, PixelType color, bool fill = false);
- virtual void drawRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType color, bool fill = false) {}
+ virtual void drawRoundedSquareAlg(int x1, int y1, int r, int w, int h, PixelType color, bool fill = false);
virtual void drawSquareAlg(int x, int y, int w, int h, PixelType color, bool fill = false);
PixelType _fgColor; /** Foreground color currently being used to draw on the renderer */