Remove printfs from bitmap plotter.

svn path=/trunk/netsurf/; revision=10699
This commit is contained in:
Michael Drake 2010-08-14 09:33:36 +00:00
parent a2276dc6ba
commit a84a8618f1
1 changed files with 1 additions and 2 deletions

View File

@ -561,13 +561,12 @@ bool nsbeos_plot_bitmap(int x, int y, int width, int height,
if (!repeat_x && repeat_y)
pretiled = nsbeos_bitmap_get_pretile_y(bitmap);
primary = nsbeos_bitmap_get_primary(bitmap);
/* use the primary and pretiled widths to scale the w/h provided */
printf("plot_tile: -> %dx%d\n", width, height);
width *= pretiled->Bounds().Width() + 1;
width /= primary->Bounds().Width() + 1;
height *= pretiled->Bounds().Height() + 1;
height /= primary->Bounds().Height() + 1;
printf("plot_tile: -> %dx%d\n", width, height);
BView *view;