mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix detecting XGD3 when dumping.
This commit is contained in:
@@ -374,9 +374,9 @@ namespace Aaru.Core.Devices.Dumping
|
||||
dskType = MediaType.XGD2;
|
||||
|
||||
// All XGD3 all have the same number of blocks
|
||||
if(blocks == 25063 || // Locked (or non compatible drive)
|
||||
blocks == 4229664 || // Xtreme unlock
|
||||
blocks == 4246304) // Wxripper unlock
|
||||
if(blocks + 1 == 25063 || // Locked (or non compatible drive)
|
||||
blocks + 1 == 4229664 || // Xtreme unlock
|
||||
blocks + 1 == 4246304) // Wxripper unlock
|
||||
dskType = MediaType.XGD3;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user