diff options
author | Johannes Schickel | 2008-05-05 22:28:03 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-05-05 22:28:03 +0000 |
commit | 7c55a889f2176efaae6f8602f04328de1ca4e8ba (patch) | |
tree | 33342ef05af0e968d39d4cb63e534444a34151b3 | |
parent | 8209ab0b7b5f258205eae77d05bac326211fe497 (diff) | |
download | scummvm-rg350-7c55a889f2176efaae6f8602f04328de1ca4e8ba.tar.gz scummvm-rg350-7c55a889f2176efaae6f8602f04328de1ca4e8ba.tar.bz2 scummvm-rg350-7c55a889f2176efaae6f8602f04328de1ca4e8ba.zip |
Fix formatting.
svn-id: r31886
-rw-r--r-- | graphics/VectorRenderer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/VectorRenderer.h b/graphics/VectorRenderer.h index ab672e789e..96b0698de7 100644 --- a/graphics/VectorRenderer.h +++ b/graphics/VectorRenderer.h @@ -218,11 +218,11 @@ public: void drawSquare(int x, int y, int w, int h, bool fill); -/** + /** * @see VectorRenderer::setColor() */ void setColor(uint8 r, uint8 g, uint8 b) { - this->_color = RGBToColor<PixelFormat>(r, g, b); + this->_color = RGBToColor<PixelFormat>(r, g, b); } /** @@ -248,7 +248,7 @@ public: * @see VectorRenderer::blendPixel() */ virtual inline void blendPixel(int x, int y, uint8 alpha) { - putPixel(x, y); + putPixel(x, y); } protected: |