Remove unused x/y args to would_flood_fill()

Copy-pasta'd them
This commit is contained in:
Bill Kendrick 2019-09-14 12:10:26 -07:00
parent 41847ae4af
commit aade790b1c
3 changed files with 3 additions and 3 deletions

View file

@ -4396,7 +4396,7 @@ static void mainloop(void)
color_hexes[cur_color][2]);
canv_color = getpixels[canvas->format->BytesPerPixel] (canvas, old_x, old_y);
if (would_flood_fill(canvas, old_x, old_y, draw_color, canv_color))
if (would_flood_fill(canvas, draw_color, canv_color))
{
/* We only bother recording an undo buffer
(which may kill our redos) if we're about