From 138d0754c9dff39c853717fb1bb4b1c3ff416d9b Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 29 Aug 2009 14:24:47 +0000 Subject: Font scaling - scaling now works for printing, need 2nd attempt at implementing it for browsing. svn path=/trunk/netsurf/; revision=9496 --- amiga/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'amiga/font.c') diff --git a/amiga/font.c b/amiga/font.c index 5c694c199..440cd02b2 100644 --- a/amiga/font.c +++ b/amiga/font.c @@ -269,7 +269,7 @@ struct OutlineFont *ami_open_outline_font(const plot_font_style_t *fstyle) } /* Scale to 16.16 fixed point */ - ysize = fstyle->size * ((1 << 16) / FONT_SIZE_SCALE); + ysize = fstyle->size * ((1 << 16) / FONT_SIZE_SCALE) * glob->scale; if(ESetInfo(&ofont->olf_EEngine, OT_DeviceDPI,(72<<16) | 72, -- cgit v1.2.3