X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fdevices%2Fswf.c;h=1f34c1b8e9fa171e4bb1c829a09f8cd95e7f735e;hp=4d8bbeaf08722bb7e07aed3e6ee8ce9c97ffbbf6;hb=335418ff94a64e55ef693fd78075de2a285f6bbb;hpb=25efc6d493c8a52a501db8ca2fea30439ad1cfee 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; }