Skip to content
Snippets Groups Projects
Commit ab025620 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 f33f066b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2254 passed
...@@ -10091,6 +10091,7 @@ broken_flood_fill(struct ciolib_pixels *pix, int x, int y, uint32_t edge, uint32 ...@@ -10091,6 +10091,7 @@ broken_flood_fill(struct ciolib_pixels *pix, int x, int y, uint32_t edge, uint32
} }
} }
   
#if 0
static void static void
flood_fill(struct ciolib_pixels *pix, int x1, int y1, uint32_t edge, uint32_t fillfg, uint32_t fillbg) 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 ...@@ -10120,6 +10121,7 @@ flood_fill(struct ciolib_pixels *pix, int x1, int y1, uint32_t edge, uint32_t fi
if (y1 > 0) if (y1 > 0)
flood_fill(pix, x1, y1 - 1, edge, fillfg, fillbg); flood_fill(pix, x1, y1 - 1, edge, fillfg, fillbg);
} }
#endif
   
struct point { struct point {
int x; int x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment