aboutsummaryrefslogtreecommitdiff
path: root/graphics/VectorRenderer.h
diff options
context:
space:
mode:
authorVicent Marti2008-05-03 22:05:17 +0000
committerVicent Marti2008-05-03 22:05:17 +0000
commite5929da662dd328ea6ff46194d4cfae8eedec5a7 (patch)
tree0890acdec33f8ffbb8d4c1e9d57a72b1739ca01d /graphics/VectorRenderer.h
parenteb411d298aff4a062ed9d429a013e4687b6dc541 (diff)
downloadscummvm-rg350-e5929da662dd328ea6ff46194d4cfae8eedec5a7.tar.gz
scummvm-rg350-e5929da662dd328ea6ff46194d4cfae8eedec5a7.tar.bz2
scummvm-rg350-e5929da662dd328ea6ff46194d4cfae8eedec5a7.zip
Coding conventions once again.
svn-id: r31850
Diffstat (limited to 'graphics/VectorRenderer.h')
-rw-r--r--graphics/VectorRenderer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/VectorRenderer.h b/graphics/VectorRenderer.h
index d8fb311f30..b5be32e0e1 100644
--- a/graphics/VectorRenderer.h
+++ b/graphics/VectorRenderer.h
@@ -127,7 +127,7 @@ public:
*/
virtual void clearSurface() {
byte *src = (byte *)_activeSurface->pixels;
- memset( src, 0, _activeSurface->w * _activeSurface->h * _activeSurface->bytesPerPixel );
+ memset(src, 0, _activeSurface->w * _activeSurface->h * _activeSurface->bytesPerPixel);
}
/**
@@ -208,7 +208,7 @@ public:
*/
void drawLine(int x1, int x2, int y1, int y2);
- void drawCircle( int x, int y, int r ) {
+ void drawCircle(int x, int y, int r) {
drawCircleAlg(x, y, r);
}