diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-05-06 18:03:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-05-06 20:52:08 +0300 |
commit | f0ae9007f666580259ca8c120f7aaee58a63f85a (patch) | |
tree | febc9da1d2ee1a5d3f85096727cd8c26d036ea5e /src/graphics.cpp | |
parent | f7c9165e0f59a33404a486c0b154a2c21ed9a9fa (diff) | |
download | mv-f0ae9007f666580259ca8c120f7aaee58a63f85a.tar.gz mv-f0ae9007f666580259ca8c120f7aaee58a63f85a.tar.bz2 mv-f0ae9007f666580259ca8c120f7aaee58a63f85a.tar.xz mv-f0ae9007f666580259ca8c120f7aaee58a63f85a.zip |
Fix code style.
Diffstat (limited to 'src/graphics.cpp')
-rw-r--r-- | src/graphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphics.cpp b/src/graphics.cpp index 193d3b271..b8d34aad4 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -408,8 +408,8 @@ bool Graphics::drawRescaledImage(Image *image, int srcX, int srcY, return returnValue; } -bool Graphics::drawImage(const Image *image, int srcX, int srcY, int dstX, int dstY, - int width, int height, bool) +bool Graphics::drawImage(const Image *image, int srcX, int srcY, + int dstX, int dstY, int width, int height, bool) { // Check that preconditions for blitting are met. if (!mTarget || !image || !image->mSDLSurface) |