diff options
author | Richard Linden <none@none> | 2010-03-23 15:04:54 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-03-23 15:04:54 -0700 |
commit | 3d77520e13a45e68e346582bed48493db7d856ea (patch) | |
tree | b070f3e033370fe1143c80b61d0f7af2a939a061 /indra/llrender/llfontgl.cpp | |
parent | 346a588124c56bbd4ee86e1f07e6f3b0cf4c4e21 (diff) | |
parent | 75370837c11ec5f62aadcd7f364c4db93764ca8a (diff) |
merge
Diffstat (limited to 'indra/llrender/llfontgl.cpp')
-rw-r--r-- | indra/llrender/llfontgl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llfontgl.cpp b/indra/llrender/llfontgl.cpp index 768f042e69..d9e1976341 100644 --- a/indra/llrender/llfontgl.cpp +++ b/indra/llrender/llfontgl.cpp @@ -673,7 +673,7 @@ S32 LLFontGL::charFromPixelOffset(const llwchar* wchars, S32 begin_offset, F32 t target_x *= sScaleX; // max_chars is S32_MAX by default, so make sure we don't get overflow - const S32 max_index = begin_offset + llmin(S32_MAX - begin_offset, max_chars); + const S32 max_index = begin_offset + llmin(S32_MAX - begin_offset, max_chars - 1); F32 scaled_max_pixels = max_pixels * sScaleX; |