We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8101fe7 commit 7d78239Copy full SHA for 7d78239
src/BizHawk.Emulation.DiscSystem/DiscFormats/CDI_format.cs
@@ -218,9 +218,8 @@ void ParseTrackHeader(CDITrackHeader header)
218
header.MediumType = br.ReadUInt16();
219
switch (header.MediumType)
220
{
221
- case 0x0038:
222
- throw new CDIParseException("Malformed CDI format: DVD was specified, but this is not supported!");
223
- case 0x0098:
+ case 0x0038: // DVD
+ case 0x0098: // CD
224
return;
225
default:
226
throw new CDIParseException("Malformed CDI format: Invalid medium type!");
0 commit comments