diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-17 16:34:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-17 16:34:36 +0300 |
commit | c6c4eef4e49bb4de90845408af9f642a1a4e224b (patch) | |
tree | 81d192e85b3c075cb2e52671bea4c3c0499dc3f2 /src/guichan/font.cpp | |
parent | 093e392dd84c920d26bca17d48ac6611393d087c (diff) | |
download | plus-c6c4eef4e49bb4de90845408af9f642a1a4e224b.tar.gz plus-c6c4eef4e49bb4de90845408af9f642a1a4e224b.tar.bz2 plus-c6c4eef4e49bb4de90845408af9f642a1a4e224b.tar.xz plus-c6c4eef4e49bb4de90845408af9f642a1a4e224b.zip |
Improve size calculations.
Diffstat (limited to 'src/guichan/font.cpp')
-rw-r--r-- | src/guichan/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guichan/font.cpp b/src/guichan/font.cpp index 6fec94121..ea4652814 100644 --- a/src/guichan/font.cpp +++ b/src/guichan/font.cpp @@ -56,7 +56,7 @@ namespace gcn { int Font::getStringIndexAt(const std::string& text, int x) const { - for (unsigned int i = 0; i < text.size(); ++i) + for (unsigned int i = 0, sz = text.size(); i < sz; ++i) { if (getWidth(text.substr(0, i)) > x) return i; |