summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-10-24 09:18:22 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-10-24 09:18:22 +0000
commit90012b487ab2732fd8b331b525007976c085ee51 (patch)
tree6a3c5e13c905f5595931923f137abd9a5e4c2d8d
parent5ce6402321d6f460e5226ac0c3cd41dd74e1a407 (diff)
downloadnetsurf-90012b487ab2732fd8b331b525007976c085ee51.tar.gz
netsurf-90012b487ab2732fd8b331b525007976c085ee51.tar.bz2
Fix odd missing chars
svn path=/trunk/netsurf/; revision=9654
-rw-r--r--amiga/font.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/font.c b/amiga/font.c
index a4ae8f0e9..609887075 100644
--- a/amiga/font.c
+++ b/amiga/font.c
@@ -210,8 +210,6 @@ bool nsfont_split(const plot_font_style_t *fstyle,
OT_GlyphMap8Bit,&glyph,
TAG_END) == 0)
{
- tx+= glyph->glm_X1;
-
if(x < tx)
{
i = length+1;
@@ -225,6 +223,8 @@ bool nsfont_split(const plot_font_style_t *fstyle,
}
}
+ tx+= glyph->glm_X1;
+
EReleaseInfo(&ofont->olf_EEngine,
OT_GlyphMap8Bit,glyph,
TAG_END);