decrease min file size limit (now Space Invaders works!)

This commit is contained in:
dborth 2008-11-25 08:16:00 +00:00
parent 6665f7575f
commit 524eaf4da1

View File

@ -354,8 +354,8 @@ int FileSortCallback(const void *f1, const void *f2)
bool IsValidROM(int method)
{
// file size should be between 128K and 8MB
if(filelist[selection].length < (1024*128) ||
// file size should be between 96K and 8MB
if(filelist[selection].length < (1024*96) ||
filelist[selection].length > (1024*1024*8))
{
WaitPrompt((char *)"Invalid file size!");