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

@ -33,6 +33,6 @@
#include "SDL.h"
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);
void do_flood_fill(SDL_Surface * canvas, int x, int y, Uint32 cur_colr, Uint32 old_colr, int * x1, int * y1, int * x2, int * y2);