From 4ff12ecfaa8042981f385f05aa2380bb3154d8a6 Mon Sep 17 00:00:00 2001 From: Sour Date: Mon, 30 Mar 2020 16:59:25 -0400 Subject: [PATCH] UI: Fixed issue with random game feature that caused it to ignore .smc files --- UI/Utilities/FolderHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Utilities/FolderHelper.cs b/UI/Utilities/FolderHelper.cs index 44277c0..13f1589 100644 --- a/UI/Utilities/FolderHelper.cs +++ b/UI/Utilities/FolderHelper.cs @@ -15,7 +15,7 @@ namespace Mesen.GUI.Utilities public static bool IsRomFile(string path) { string ext = Path.GetExtension(path).ToLower(); - return ext == ".sfc" || ext == ".swc" || ext == ".fig" || ext == ".swc"; + return ext == ".sfc" || ext == ".smc" || ext == ".fig" || ext == ".swc"; } public static bool IsArchiveFile(string path)