summaryrefslogtreecommitdiff
path: root/src/guichan
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-05-06 01:17:00 +0300
committerAndrei Karas <akaras@inbox.ru>2012-05-06 01:17:00 +0300
commitbcd99fe009fb7d8b14ca4a711befa7f156b29ae7 (patch)
treeb9136debb29ae3fe3dbdcb595a5d65092e0bf613 /src/guichan
parent6d8828b47e291c0e85645adb60c8969a3f8facf4 (diff)
downloadmv-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.tar.gz
mv-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.tar.bz2
mv-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.tar.xz
mv-bcd99fe009fb7d8b14ca4a711befa7f156b29ae7.zip
Add const to images in drawing functions.
Diffstat (limited to 'src/guichan')
-rw-r--r--src/guichan/graphics.cpp1
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)