mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Do not calculate pregaps when dumping on a Plextor as some older models contains firmware bugs that crash the bus.
It is not needed really when dumping.
This commit is contained in:
@@ -218,6 +218,13 @@ namespace Aaru.Core.Devices.Dumping
|
||||
continue;
|
||||
}
|
||||
|
||||
if(dumping && dev.Manufacturer.ToLowerInvariant().StartsWith("plextor"))
|
||||
{
|
||||
AaruConsole.DebugWriteLine("Pregap calculator", "Skipping track {0} due to Plextor firmware bug", track.TrackSequence);
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
AaruConsole.DebugWriteLine("Pregap calculator", "Track {0}", track.TrackSequence);
|
||||
|
||||
int lba = (int)track.TrackStartSector - 1;
|
||||
|
||||
Reference in New Issue
Block a user