diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-16 20:39:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-16 20:39:33 +0300 |
commit | bc92643d8db723b5049db2dbad1ce052a0ae77a9 (patch) | |
tree | 4471be99711ee310c811e990d7c210e2393aeb6e /src/graphics.h | |
parent | 82cc576b7896f39bcf71aa85c8c4b3ef786c065b (diff) | |
download | plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.tar.gz plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.tar.bz2 plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.tar.xz plus-bc92643d8db723b5049db2dbad1ce052a0ae77a9.zip |
Fix code style and some other minor issues.
Diffstat (limited to 'src/graphics.h')
-rw-r--r-- | src/graphics.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/graphics.h b/src/graphics.h index 94b0ef8f3..d6fd015f9 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -139,8 +139,9 @@ class Graphics : public gcn::SDLGraphics /** * Draws a resclaled version of the image */ - bool drawRescaledImage(Image *const image, int srcX, int srcY, - int dstX, int dstY, + bool drawRescaledImage(Image *const image, + const int srcX, const int srcY, + const int dstX, const int dstY, const int width, const int height, const int desiredWidth, const int desiredHeight) { |