From 335418ff94a64e55ef693fd78075de2a285f6bbb Mon Sep 17 00:00:00 2001 From: kramm Date: Wed, 12 Nov 2008 10:31:51 +0000 Subject: [PATCH] fixed drawonlyshapes implementation --- lib/devices/swf.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/devices/swf.c b/lib/devices/swf.c index 4d8bbea..1f34c1b 100644 --- a/lib/devices/swf.c +++ b/lib/devices/swf.c @@ -2844,11 +2844,10 @@ static void swf_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyph, gfxcolor_t* } if(i->config_drawonlyshapes) { - gfxglyph_t*glyph = &font->glyphs[glyphnr]; - gfxline_t*line2 = gfxline_clone(glyph->line); + gfxglyph_t*g = &font->glyphs[glyph]; + gfxline_t*line2 = gfxline_clone(g->line); gfxline_transform(line2, matrix); - draw_line(dev, line2); - fill_solid(dev, color); + dev->fill(dev, line2, color); gfxline_free(line2); return; } -- 1.7.10.4