size check adjusted, naked bootbox is small

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7389 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jörg Hohensohn 2005-08-23 08:00:16 +00:00
parent 13be9f14d7
commit 943d8d4537

View file

@ -353,7 +353,7 @@ tCheckResult CheckFirmwareFile(char* filename, int chipsize, bool is_romless)
rb->close(fd);
return eTooBig;
}
else if (fileleft < 50000) /* give it some reasonable lower limit */
else if (fileleft < 20000) /* give it some reasonable lower limit */
{
rb->close(fd);
return eTooSmall;