summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-10-19 21:29:39 +0000
committerJames Bursa <james@netsurf-browser.org>2004-10-19 21:29:39 +0000
commit02cec85fea881f96f83f19584acc123e80913164 (patch)
treee1ebec8ae626def1d36ac3111674280c6f2984f3 /riscos
parent1552896c9e22e6e9b0f6cbd37337348f92da939f (diff)
downloadnetsurf-02cec85fea881f96f83f19584acc123e80913164.tar.gz
netsurf-02cec85fea881f96f83f19584acc123e80913164.tar.bz2
[project @ 2004-10-19 21:29:39 by bursa]
Fix disc radius. svn path=/import/netsurf/; revision=1327
Diffstat (limited to 'riscos')
-rw-r--r--riscos/plotters.c2
1 files changed, 1 insertions, 1 deletions
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;