Do not try to fix inexactly positioned Q pregaps, as this introduces more errors than it fixes.

This commit is contained in:
2020-01-06 22:27:24 +00:00
parent 9be90b7cb9
commit 14140ed420

View File

@@ -300,10 +300,7 @@ namespace DiscImageChef.Core.Devices.Dumping
int diff = posQ - lba;
if(diff != 0)
{
inexactPositioning = true;
pregapQ += diff;
}
inexactPositioning = true;
// Bigger than known change, otherwise we found it
if(pregapQ > pregaps[track.TrackSequence])