diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-05-06 01:17:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-05-06 01:17:00 +0300 |
commit | bcd99fe009fb7d8b14ca4a711befa7f156b29ae7 (patch) | |
tree | b9136debb29ae3fe3dbdcb595a5d65092e0bf613 /src/guichan | |
parent | 6d8828b47e291c0e85645adb60c8969a3f8facf4 (diff) | |
download | plus-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.tar.gz plus-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.tar.bz2 plus-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.tar.xz plus-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.zip |
Add const to images in drawing functions.
Diffstat (limited to 'src/guichan')
-rw-r--r-- | src/guichan/graphics.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/guichan/graphics.cpp b/src/guichan/graphics.cpp index 1c99d899e..1f6cb8a64 100644 --- a/src/guichan/graphics.cpp +++ b/src/guichan/graphics.cpp @@ -145,6 +145,7 @@ namespace gcn void Graphics::drawImage(const Image* image A_UNUSED, int dstX A_UNUSED, int dstY A_UNUSED) { + throw GCN_EXCEPTION("Not implimented."); } void Graphics::setFont(Font* font) |