diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-30 22:03:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-30 22:03:32 +0300 |
commit | 1d0044cbc81e547ad688a295288910d58e1a3fb1 (patch) | |
tree | 0a4575b8ff5f76b571891ea0f30df02fe61f4f29 /src/guichan/defaultfont.cpp | |
parent | b82ee801506790283d2f03060949bb5089086de8 (diff) | |
download | plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.gz plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.bz2 plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.tar.xz plus-1d0044cbc81e547ad688a295288910d58e1a3fb1.zip |
Fix compilation warnings after guichan integration.
Remove temp file.
Diffstat (limited to 'src/guichan/defaultfont.cpp')
-rw-r--r-- | src/guichan/defaultfont.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/guichan/defaultfont.cpp b/src/guichan/defaultfont.cpp index d792e727d..aa8f0c24f 100644 --- a/src/guichan/defaultfont.cpp +++ b/src/guichan/defaultfont.cpp @@ -64,7 +64,8 @@ namespace gcn return 8*text.size(); } - int DefaultFont::drawGlyph(Graphics* graphics, unsigned char glyph, int x, int y) + int DefaultFont::drawGlyph(Graphics* graphics, + unsigned char glyph _UNUSED_, int x, int y) { graphics->drawRectangle( Rectangle(x, y, 8, 8)); |