Do not hide boot.vhd in file selector.

This commit is contained in:
sorgelig
2018-05-17 12:54:05 +08:00
parent dd5a1eb33e
commit a24ad65f80

View File

@@ -598,7 +598,6 @@ int ScanDirectory(const char* path, int mode, const char *extension, int options
//skip non-selectable files
if (!strcasecmp(de->d_name, "menu.rbf")) continue;
if (!strcasecmp(de->d_name, "boot.rom")) continue;
if (!strcasecmp(de->d_name, "boot.vhd")) continue;
//check the prefix if given
if (prefix && strncasecmp(prefix, de->d_name, strlen(prefix))) continue;