Fix crash caused by quirc overflowing the 3ds stack in some instances

This commit is contained in:
2020-06-11 20:41:17 -04:00
parent e8d0a2eb27
commit b75d1acb21

View File

@@ -122,7 +122,7 @@ static void perspective_unmap(const double *c,
* Span-based floodfill routine
*/
#define FLOOD_FILL_MAX_DEPTH 4096
#define FLOOD_FILL_MAX_DEPTH 128
typedef void (*span_func_t)(void *user_data, int y, int left, int right);