mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add detection of Castlewood Orb 2.2Gb cart.
This commit is contained in:
@@ -156,6 +156,15 @@ namespace DiscImageChef.CommonTypes
|
||||
return blocks == 625134256 ? MediaType.RDX320 : MediaType.RDX;
|
||||
}
|
||||
|
||||
if(vendor.ToLowerInvariant().StartsWith("cws orb"))
|
||||
{
|
||||
switch(blocks)
|
||||
{
|
||||
case 4307184 when blockSize == 512: return MediaType.Orb;
|
||||
default: return MediaType.Unknown;
|
||||
}
|
||||
}
|
||||
|
||||
switch(mediumType)
|
||||
{
|
||||
case 0x01:
|
||||
|
||||
Reference in New Issue
Block a user