mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 00:15:14 +01:00
decrease min file size limit (now Space Invaders works!)
This commit is contained in:
parent
6665f7575f
commit
524eaf4da1
@ -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!");
|
||||
|
Loading…
Reference in New Issue
Block a user