diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-31 12:56:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-31 12:56:02 +0300 |
commit | 6e4517d3f46f11fc47b77e92bd2c439fdb5738b2 (patch) | |
tree | e3e7c2684a5614c4f888664a1492be3db9f75afd /src/render/surfacegraphics.h | |
parent | 05451849f8cec9ed91a213d5020cf6406ba94feb (diff) | |
download | plus-6e4517d3f46f11fc47b77e92bd2c439fdb5738b2.tar.gz plus-6e4517d3f46f11fc47b77e92bd2c439fdb5738b2.tar.bz2 plus-6e4517d3f46f11fc47b77e92bd2c439fdb5738b2.tar.xz plus-6e4517d3f46f11fc47b77e92bd2c439fdb5738b2.zip |
fix compilation warnings.
Diffstat (limited to 'src/render/surfacegraphics.h')
-rw-r--r-- | src/render/surfacegraphics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h index 8d58fa052..4b46133a2 100644 --- a/src/render/surfacegraphics.h +++ b/src/render/surfacegraphics.h @@ -197,9 +197,9 @@ class SurfaceGraphics final : public Graphics * Draws a rectangle using images. 4 corner images, 4 side images and 1 * image for the inside. */ - void drawImageRect(const int x, const int y, - const int w, const int h, - const ImageRect &imgRect) + void drawImageRect(const int x A_UNUSED, const int y A_UNUSED, + const int w A_UNUSED, const int h A_UNUSED, + const ImageRect &imgRect A_UNUSED) { } protected: |