UI: Fixed issue with random game feature that caused it to ignore .smc files
This commit is contained in:
parent
1277427f2f
commit
4ff12ecfaa
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue