From daf5378d1edb818b1f9afae973cd16a13272a127 Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Sat, 28 Nov 2009 13:01:48 -0800 Subject: [PATCH] undo previous change --- lib/modules/swftext.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/modules/swftext.c b/lib/modules/swftext.c index 1bb40d9..cb2624e 100644 --- a/lib/modules/swftext.c +++ b/lib/modules/swftext.c @@ -541,7 +541,6 @@ static void updateusage(void *self, int *chars, int *xpos, int nr, return; int t; - int firstpair=1; for(t=0;tlast!=c && !swf_ShapeIsEmpty(u->font->glyph[u->last].shape) && !swf_ShapeIsEmpty(u->font->glyph[c].shape)) { - /* ignore the first pair of every word (caps subset hack). */ - if(!firstpair) - swf_FontUsePair(u->font, u->last, c); - firstpair = 0; - } else { - firstpair = 1; + swf_FontUsePair(u->font, u->last, c); } u->lasty = y; /* FIXME: do we still need to divide advance by 20 for definefont3? */ -- 1.7.10.4