From e580428738c47c16efcaa42e6afadfec6af59791 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Wed, 8 Jul 2009 22:32:57 +0000 Subject: Fix compilation svn path=/trunk/netsurf/; revision=8400 --- amiga/plotters.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amiga/plotters.c b/amiga/plotters.c index 9e16822f5..23cda9f30 100755 --- a/amiga/plotters.c +++ b/amiga/plotters.c @@ -121,7 +121,7 @@ bool ami_clg(colour c) return true; } -bool ami_fill(int x0, int y0, int x1, int y1, const plot_style_t *style) +bool ami_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *style) { if (style->fill_type != PLOT_OP_TYPE_NONE) { @@ -152,7 +152,7 @@ bool ami_fill(int x0, int y0, int x1, int y1, const plot_style_t *style) break; case PLOT_OP_TYPE_DOT: /**< Doted plot */ - glob->rp.LinePtrn = PATT_DOT + glob->rp.LinePtrn = PATT_DOT; break; case PLOT_OP_TYPE_DASH: /**< dashed plot */ -- cgit v1.2.3