Restore speed reduction on audio reading disabled by previous commit.

This commit is contained in:
2021-09-05 19:10:05 +01:00
parent b174c3f524
commit 44b0a10895

View File

@@ -234,16 +234,16 @@ namespace Aaru.Core.Devices.Dumping
}
}
/* if(!inData &&
currentReadSpeed == 0xFFFF)
{
_dumpLog.WriteLine("Setting speed to 8x for audio reading.");
UpdateStatus?.Invoke("Setting speed to 8x for audio reading.");
if(!inData &&
currentReadSpeed == 0xFFFF)
{
_dumpLog.WriteLine("Setting speed to 8x for audio reading.");
UpdateStatus?.Invoke("Setting speed to 8x for audio reading.");
_dev.SetCdSpeed(out _, RotationalControl.ClvAndImpureCav, 1416, 0, _dev.Timeout, out _);
_dev.SetCdSpeed(out _, RotationalControl.ClvAndImpureCav, 1416, 0, _dev.Timeout, out _);
currentReadSpeed = 1200;
}*/
currentReadSpeed = 1200;
}
if(inData && currentReadSpeed != _speed)
{