diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-29 21:40:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-29 21:40:10 +0300 |
commit | cf383ed98ff41b6086325b168e5f750b6f87d72e (patch) | |
tree | 3596cf2f6e000d0e76c17db0531e63ed6c9b876c /src/render/surfacegraphics.h | |
parent | f94a6551b8d140e272ac1c46bce1ff0e5df34986 (diff) | |
download | plus-cf383ed98ff41b6086325b168e5f750b6f87d72e.tar.gz plus-cf383ed98ff41b6086325b168e5f750b6f87d72e.tar.bz2 plus-cf383ed98ff41b6086325b168e5f750b6f87d72e.tar.xz plus-cf383ed98ff41b6086325b168e5f750b6f87d72e.zip |
fix compilation warnings.
Diffstat (limited to 'src/render/surfacegraphics.h')
-rw-r--r-- | src/render/surfacegraphics.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h index b606d0ddf..6b8051c6a 100644 --- a/src/render/surfacegraphics.h +++ b/src/render/surfacegraphics.h @@ -188,9 +188,11 @@ class SurfaceGraphics final : public Graphics void drawImageCached(const Image *const image, int x, int y) override final; - void drawPatternCached(const Image *const image, - const int x, const int y, - const int w, const int h) override final + void drawPatternCached(const Image *const image A_UNUSED, + const int x A_UNUSED, + const int y A_UNUSED, + const int w A_UNUSED, + const int h A_UNUSED) override final { } void completeCache() override final; |