From: adam Date: Thu, 8 Apr 2004 02:33:19 +0000 (+0000) Subject: Font.java misc bugfixes X-Git-Tag: RC4~30 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=0ced46623981c2ff9781b4c4558f370e76994345;p=org.ibex.core.git Font.java misc bugfixes darcs-hash:20040408023319-5007d-c45aa13b284997fdf5a064f692921734b3c85c6f.gz --- diff --git a/src/org/ibex/Font.java b/src/org/ibex/Font.java index bbe0ac2..451672e 100644 --- a/src/org/ibex/Font.java +++ b/src/org/ibex/Font.java @@ -32,7 +32,10 @@ public class Font { public int width = -1; ///< the width of the glyph public int height = -1; ///< the height of the glyph public byte[] data = null; ///< the alpha channel samples for this font - void render() { if (!isLoaded) try { freetype.renderGlyph(this); } catch (IOException e) { Log.info(Freetype.class, e); } } + void render() { + if (!isLoaded) try { freetype.renderGlyph(this); } catch (IOException e) { Log.info(Freetype.class, e); } + isLoaded = true; + } }