Skip to content

Commit 389c6eb

Browse files
fix 2mg detection
fixes 8737203
1 parent 8737203 commit 389c6eb

File tree

1 file changed

+1
-1
lines changed
  • src/BizHawk.Emulation.Cores/Computers/AppleII

1 file changed

+1
-1
lines changed

src/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public AppleII(CoreLoadParameters<Settings, SyncSettings> lp)
2929
return ext switch
3030
{
3131
".DSK" or ".PO" or ".DO" or ".NIB" => (romAssert.FileData, ext),
32-
".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?)
32+
".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?)
3333
_ => (romAssert.FileData, ".DSK") // no idea, let's assume it's just a .DSK?
3434
};
3535
}

0 commit comments

Comments
 (0)