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

@ -78,7 +78,7 @@ int colors_close(SDL_Surface * canvas, Uint32 c1, Uint32 c2)
}
int would_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr)
int would_flood_fill(SDL_Surface * canvas, Uint32 cur_colr, Uint32 old_colr)
{
if (cur_colr == old_colr || colors_close(canvas, cur_colr, old_colr))
{