From 61422850e49ff751c44714acc6e1c975878f12ee Mon Sep 17 00:00:00 2001 From: Jessie Lee Date: Mon, 14 Oct 2019 11:29:59 +0900 Subject: [PATCH] decrease the download size for smaller DRAM --- libuuu/fastboot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libuuu/fastboot.h b/libuuu/fastboot.h index ba37349e..ca7d4bb3 100644 --- a/libuuu/fastboot.h +++ b/libuuu/fastboot.h @@ -150,6 +150,6 @@ class FBCopy : public CmdBase bool m_bDownload; size_t m_Maxsize_pre_cmd; int parser(char *p=NULL); - FBCopy(char *p) :CmdBase(p) { m_Maxsize_pre_cmd = 0x10000; }; + FBCopy(char *p) :CmdBase(p) { m_Maxsize_pre_cmd = 0x1000; }; int run(CmdCtx *ctx); };