summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-04-01 17:40:09 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-04-01 17:40:09 +0000
commit16d7252eac5890708384fa36d36e05c8daf8b3ef (patch)
tree09b071e10f31504f4bba92aaf71929485e147ce9
parent853793eaa81282de95a6f2069006c108ab1e7125 (diff)
downloadnetsurf-16d7252eac5890708384fa36d36e05c8daf8b3ef.tar.gz
netsurf-16d7252eac5890708384fa36d36e05c8daf8b3ef.tar.bz2
Sync full Cairo build with GTK Cairo plotters
(this was in the previous commit with a copy'n'paste error) svn path=/trunk/netsurf/; revision=7022
-rwxr-xr-xamiga/plotters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index f79337fbe..565539c6f 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -182,8 +182,8 @@ bool ami_line(int x0, int y0, int x1, int y1, int width,
width = 1;
cairo_set_line_width(glob.cr, width);
- cairo_move_to(current_cr, x0 + 0.5, y0 + 0.5);
- cairo_line_to(current_cr, x1 + 0.5, y1 + 0.5);
+ cairo_move_to(glob.cr, x0 + 0.5, y0 + 0.5);
+ cairo_line_to(glob.cr, x1 + 0.5, y1 + 0.5);
cairo_stroke(glob.cr);
#endif
return true;