From 82f15c4643798d39db2d347f51518f5616ecb67c Mon Sep 17 00:00:00 2001 From: Daryl Borth Date: Thu, 28 Jan 2021 12:02:53 -0700 Subject: [PATCH] add .bs to list of files to display --- source/fileop.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/fileop.cpp b/source/fileop.cpp index 646c7ed..f96a73b 100644 --- a/source/fileop.cpp +++ b/source/fileop.cpp @@ -564,9 +564,10 @@ static bool ParseDirEntries() if(ext == NULL) continue; - if( strcasecmp(ext, "smc") != 0 && strcasecmp(ext, "fig") != 0 && - strcasecmp(ext, "sfc") != 0 && strcasecmp(ext, "swc") != 0 && - strcasecmp(ext, "zip") != 0 && strcasecmp(ext, "7z") != 0) + if( strcasecmp(ext, "bs") != 0 && strcasecmp(ext, "smc") != 0 && + strcasecmp(ext, "fig") != 0 && strcasecmp(ext, "sfc") != 0 && + strcasecmp(ext, "swc") != 0 && strcasecmp(ext, "zip") != 0 && + strcasecmp(ext, "7z") != 0) continue; } }