summaryrefslogtreecommitdiff
path: root/indra/llrender/llfontfreetype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llrender/llfontfreetype.cpp')
-rwxr-xr-x[-rw-r--r--]indra/llrender/llfontfreetype.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp
index af4ffc6aea..7452bdf02b 100644..100755
--- a/indra/llrender/llfontfreetype.cpp
+++ b/indra/llrender/llfontfreetype.cpp
@@ -485,9 +485,11 @@ void LLFontFreetype::renderGlyph(U32 glyph_index) const
if (mFTFace == NULL)
return;
- llassert(! FT_Load_Glyph(mFTFace, glyph_index, FT_LOAD_FORCE_AUTOHINT) );
+ int error = FT_Load_Glyph(mFTFace, glyph_index, FT_LOAD_FORCE_AUTOHINT);
+ llassert(!error);
- llassert(! FT_Render_Glyph(mFTFace->glyph, gFontRenderMode) );
+ error = FT_Render_Glyph(mFTFace->glyph, gFontRenderMode);
+ llassert(!error);
mRenderGlyphCount++;
}