From 02cec85fea881f96f83f19584acc123e80913164 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Tue, 19 Oct 2004 21:29:39 +0000 Subject: [project @ 2004-10-19 21:29:39 by bursa] Fix disc radius. svn path=/import/netsurf/; revision=1327 --- riscos/plotters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'riscos/plotters.c') diff --git a/riscos/plotters.c b/riscos/plotters.c index 66ce1e98e..3c363ea7d 100644 --- a/riscos/plotters.c +++ b/riscos/plotters.c @@ -334,7 +334,7 @@ bool ro_plot_disc(int x, int y, int radius, colour colour) LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess)); return false; } - error = xos_plot(os_PLOT_CIRCLE | os_PLOT_BY, radius, 0); + error = xos_plot(os_PLOT_CIRCLE | os_PLOT_BY, radius * 2, 0); if (error) { LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess)); return false; -- cgit v1.2.3