From 153b1ab7029d9fa5171f291e301804e7cb50d14e Mon Sep 17 00:00:00 2001 From: Andrei Alexeyev Date: Sun, 30 Jul 2023 06:24:32 +0200 Subject: [PATCH] progress: increase file size limit --- src/progress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/progress.c b/src/progress.c index 9b150cd5..bfc6b08f 100644 --- a/src/progress.c +++ b/src/progress.c @@ -87,7 +87,7 @@ typedef enum ProgfileCommand { */ #define PROGRESS_FILE "storage/progress.dat" -#define PROGRESS_MAXFILESIZE 4096 +#define PROGRESS_MAXFILESIZE (1 << 15) GlobalProgress progress;