From 389c6ebec58be8aefede801b4f65b8a1a3497ff7 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Tue, 4 Apr 2023 23:52:05 -0700 Subject: [PATCH] fix 2mg detection fixes 8737203f3a41ce48bc2ca17df8741555d44ff4f8 --- src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs b/src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs index 4645488e463..dfd2082afb3 100644 --- a/src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs +++ b/src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs @@ -29,7 +29,7 @@ public AppleII(CoreLoadParameters lp) return ext switch { ".DSK" or ".PO" or ".DO" or ".NIB" => (romAssert.FileData, ext), - ".2mg" => throw new NotSupportedException("Unsupported extension .2mg!"), // TODO: add a way to support this (we have hashes of this format in our db it seems?) + ".2MG" => throw new NotSupportedException("Unsupported extension .2mg!"), // TODO: add a way to support this (we have hashes of this format in our db it seems?) _ => (romAssert.FileData, ".DSK") // no idea, let's assume it's just a .DSK? }; }