From b7e2aeca3455d30a2df3d3e0f3807917e13deafc Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Mon, 8 Mar 2021 01:39:47 -0800 Subject: [PATCH] Remove printf() debugging left in fill.c --- src/fill.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fill.c b/src/fill.c index 43be2ce2d..f74648a0a 100644 --- a/src/fill.c +++ b/src/fill.c @@ -244,7 +244,6 @@ void simulate_flood_fill_outside_check(SDL_Surface * screen, SDL_Surface * last, } px_colr = getpixels[last->format->BytesPerPixel] (last, fillR, y); -printf("%f\n", in_line); putpixels[canvas->format->BytesPerPixel] (canvas, fillR, y, blend(canvas, cur_colr, px_colr, (1.0 - in_line))); fillR++;