mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add MilCD detection.
This commit is contained in:
@@ -1698,6 +1698,13 @@ namespace DiscImageChef.Core.Media.Info
|
||||
MediaType = MediaType.JaguarCD;
|
||||
break;
|
||||
}
|
||||
|
||||
if(firstTrackSecondSession.Length >= 2336)
|
||||
{
|
||||
byte[] milcd = new byte[2048];
|
||||
Array.Copy(firstTrackSecondSession, 24, milcd, 0, 2048);
|
||||
if(Dreamcast.DecodeIPBin(milcd).HasValue) MediaType = MediaType.MilCD;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user