summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-07-08 22:32:57 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-07-08 22:32:57 +0000
commite580428738c47c16efcaa42e6afadfec6af59791 (patch)
tree7a2e4368d4df90b6d589e7203583b92fcce7d429 /amiga
parentf9ecd56f62f833f21b3475f0d1b59bc8e053a03e (diff)
downloadnetsurf-e580428738c47c16efcaa42e6afadfec6af59791.tar.gz
netsurf-e580428738c47c16efcaa42e6afadfec6af59791.tar.bz2
Fix compilation
svn path=/trunk/netsurf/; revision=8400
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/plotters.c4
1 files 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 */