[project @ 2004-10-19 21:29:39 by bursa]

Fix disc radius.

svn path=/import/netsurf/; revision=1327
This commit is contained in:
James Bursa 2004-10-19 21:29:39 +00:00
parent 1552896c9e
commit 02cec85fea
1 changed files with 1 additions and 1 deletions

View File

@ -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;