From a24ad65f80ae5b7f4e0d6a7e6e0f4fd8d63504c8 Mon Sep 17 00:00:00 2001 From: sorgelig Date: Thu, 17 May 2018 12:54:05 +0800 Subject: [PATCH] Do not hide boot.vhd in file selector. --- file_io.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/file_io.cpp b/file_io.cpp index 2867c36..aeea21b 100644 --- a/file_io.cpp +++ b/file_io.cpp @@ -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;