Skip to content
Snippets Groups Projects
Commit 01968ae8 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

ifdef out an unused static function for now.

It will be used in the future, so the code shouldn't be deleted,
but not using it causes a warning.
parent 8dfafd48
No related branches found
No related tags found
No related merge requests found
......@@ -10091,6 +10091,7 @@ broken_flood_fill(struct ciolib_pixels *pix, int x, int y, uint32_t edge, uint32
}
}
 
#if 0
static void
flood_fill(struct ciolib_pixels *pix, int x1, int y1, uint32_t edge, uint32_t fillfg, uint32_t fillbg)
{
......@@ -10120,6 +10121,7 @@ flood_fill(struct ciolib_pixels *pix, int x1, int y1, uint32_t edge, uint32_t fi
if (y1 > 0)
flood_fill(pix, x1, y1 - 1, edge, fillfg, fillbg);
}
#endif
 
struct point {
int x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment