From b730af7b73f42ddc3c132bf66e574bb06920afd3 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Mon, 27 Jun 2022 14:39:10 -0700 Subject: [PATCH] the . is neccessary also make it case insensitive --- src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs b/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs index e5533eedab..6364a03d68 100644 --- a/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs +++ b/src/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs @@ -19,7 +19,7 @@ namespace BizHawk.Emulation.Cores.Computers.MSX SyncSettings = lp.SyncSettings ?? new MSXSyncSettings(); var rom = lp.Roms.FirstOrDefault() ?? throw new Exception("Must have a ROM for MSX!"); - if (rom.Extension is not "rom") + if (rom.Extension.ToLowerInvariant() is not ".rom") { throw new NotSupportedException("Only MSX .rom files are supported!"); }