Skip to content

Commit 7d78239

Browse files
Allow .cdi DVDs through
1 parent 8101fe7 commit 7d78239

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/BizHawk.Emulation.DiscSystem/DiscFormats/CDI_format.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,8 @@ void ParseTrackHeader(CDITrackHeader header)
218218
header.MediumType = br.ReadUInt16();
219219
switch (header.MediumType)
220220
{
221-
case 0x0038:
222-
throw new CDIParseException("Malformed CDI format: DVD was specified, but this is not supported!");
223-
case 0x0098:
221+
case 0x0038: // DVD
222+
case 0x0098: // CD
224223
return;
225224
default:
226225
throw new CDIParseException("Malformed CDI format: Invalid medium type!");

0 commit comments

Comments
 (0)