summaryrefslogtreecommitdiff
path: root/src/render/surfacegraphics.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-29 21:40:10 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-29 21:40:10 +0300
commitcf383ed98ff41b6086325b168e5f750b6f87d72e (patch)
tree3596cf2f6e000d0e76c17db0531e63ed6c9b876c /src/render/surfacegraphics.h
parentf94a6551b8d140e272ac1c46bce1ff0e5df34986 (diff)
downloadManaVerse-cf383ed98ff41b6086325b168e5f750b6f87d72e.tar.gz
ManaVerse-cf383ed98ff41b6086325b168e5f750b6f87d72e.tar.bz2
ManaVerse-cf383ed98ff41b6086325b168e5f750b6f87d72e.tar.xz
ManaVerse-cf383ed98ff41b6086325b168e5f750b6f87d72e.zip
fix compilation warnings.
Diffstat (limited to 'src/render/surfacegraphics.h')
-rw-r--r--src/render/surfacegraphics.h8
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;