diff options
Diffstat (limited to 'src/guichan/defaultfont.hpp')
-rw-r--r-- | src/guichan/defaultfont.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/guichan/defaultfont.hpp b/src/guichan/defaultfont.hpp index 9343e96d3..e5a830e4c 100644 --- a/src/guichan/defaultfont.hpp +++ b/src/guichan/defaultfont.hpp @@ -83,12 +83,14 @@ namespace gcn * @param y The y coordinate where to draw the glyph. * @return The width of the drawn glyph in pixels. */ - virtual int drawGlyph(Graphics* graphics, unsigned char glyph, int x, int y); + virtual int drawGlyph(Graphics* graphics, unsigned char glyph, + int x, int y); // Inherited from Font - virtual void drawString(Graphics* graphics, const std::string& text, int x, int y); + virtual void drawString(Graphics* graphics, const std::string& text, + int x, int y); virtual int getWidth(const std::string& text) const; |