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:
Jörg Hohensohn 2003-08-25 21:49:23 +00:00
parent 53ee344743
commit a8b672b0f5

View file

@ -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;