diff options
Diffstat (limited to 'src/guichan/defaultfont.cpp')
-rw-r--r-- | src/guichan/defaultfont.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/guichan/defaultfont.cpp b/src/guichan/defaultfont.cpp index aa8f0c24f..19046c687 100644 --- a/src/guichan/defaultfont.cpp +++ b/src/guichan/defaultfont.cpp @@ -72,7 +72,8 @@ namespace gcn return 8; } - void DefaultFont::drawString(Graphics* graphics, const std::string& text, int x, int y) + void DefaultFont::drawString(Graphics* graphics, const std::string& text, + int x, int y) { unsigned int i; @@ -86,9 +87,7 @@ namespace gcn int DefaultFont::getStringIndexAt(const std::string& text, int x) const { if (x > (int)text.size() * 8) - { return text.size(); - } return x / 8; } |