filesize limit lowered to 40KB, player images are so small
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3941 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
53ee344743
commit
a8b672b0f5
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ tCheckResult CheckImageFile(char* filename, int space, tImageHeader* pHeader)
|
|||
rb->close(fd);
|
||||
return eTooBig;
|
||||
}
|
||||
else if (filesize < 50000) /* give it some reasonable lower limit */
|
||||
else if (filesize < 40000) /* give it some reasonable lower limit */
|
||||
{
|
||||
rb->close(fd);
|
||||
return eTooSmall;
|
||||
|
|
Loading…
Reference in a new issue