From 16d7252eac5890708384fa36d36e05c8daf8b3ef Mon Sep 17 00:00:00 2001 From: Chris Young Date: Wed, 1 Apr 2009 17:40:09 +0000 Subject: 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 --- amiga/plotters.c | 4 ++-- 1 file 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; -- cgit v1.2.3