UI: Fixed issue with random game feature that caused it to ignore .smc files

This commit is contained in:
Sour 2020-03-30 16:59:25 -04:00
parent 1277427f2f
commit 4ff12ecfaa

View file

@ -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)