mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix when Q brings us a later sector.
This commit is contained in:
@@ -503,6 +503,17 @@ namespace Aaru.Core.Devices.Dumping
|
||||
inexactPositioning = true;
|
||||
}
|
||||
|
||||
// Received a Q post the LBA we wanted, just go back. If we are already going forward, break
|
||||
if(posQ > lba)
|
||||
{
|
||||
if(forward)
|
||||
break;
|
||||
|
||||
lba--;
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
// Bigger than known change, otherwise we found it
|
||||
if(pregapQ > pregaps[track.TrackSequence])
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user