diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2005-06-22 05:54:47 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2005-06-22 05:54:47 +0000 |
commit | 36e2393ef930c1fa6916033c448c60323a6ef7a6 (patch) | |
tree | d6f70418a092ede5226c8b8606d04030cfbbd8f0 /apps/plugins | |
parent | aee2425f66d2abe6c569e9134771309a61483bb0 (diff) |
allow smaller .ucl, to test bootbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6796 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/rockbox_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c index b1b5bc5233..9a403197dd 100644 --- a/apps/plugins/rockbox_flash.c +++ b/apps/plugins/rockbox_flash.c @@ -376,7 +376,7 @@ tCheckResult CheckImageFile(char* filename, int space, tImageHeader* pHeader, rb->close(fd); return eTooBig; } - else if (filesize < 40000) /* give it some reasonable lower limit */ + else if (filesize < 10000) /* give it some reasonable lower limit */ { rb->close(fd); return eTooSmall; |