From f80b3112c6bd8287058529752e42c3de66c95cea Mon Sep 17 00:00:00 2001 From: Chee Yee Date: Thu, 27 Jun 2024 11:11:33 -0700 Subject: [PATCH] increase archive read buffer size to improve extraction speed --- source/zip_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/zip_util.h b/source/zip_util.h index aae8261..2e49412 100644 --- a/source/zip_util.h +++ b/source/zip_util.h @@ -10,7 +10,7 @@ #include "common.h" #include "fs.h" -#define ARCHIVE_TRANSFER_SIZE 5242880 +#define ARCHIVE_TRANSFER_SIZE 20971520 static uint8_t MAGIC_ZIP_1[4] = {0x50, 0x4B, 0x03, 0x04}; static uint8_t MAGIC_ZIP_2[4] = {0x50, 0x4B, 0x05, 0x06};