From 0ced46623981c2ff9781b4c4558f370e76994345 Mon Sep 17 00:00:00 2001 From: adam Date: Thu, 8 Apr 2004 02:33:19 +0000 Subject: [PATCH] Font.java misc bugfixes darcs-hash:20040408023319-5007d-c45aa13b284997fdf5a064f692921734b3c85c6f.gz --- src/org/ibex/Font.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; + } } -- 1.7.10.4