diff --git a/src/BizHawk.Client.Common/XmlGame.cs b/src/BizHawk.Client.Common/XmlGame.cs index 2795ccf5e9..9684da4443 100644 --- a/src/BizHawk.Client.Common/XmlGame.cs +++ b/src/BizHawk.Client.Common/XmlGame.cs @@ -90,7 +90,7 @@ namespace BizHawk.Client.Common else { var path = fullPath.SubstringBefore('|'); - data = RomGame.Is3DSRom(path) + data = RomGame.Is3DSRom(Path.GetExtension(path).ToUpperInvariant()) ? Array.Empty() : File.ReadAllBytes(path); }