mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Corrected typo that forced CHS disks to be treated like LBA.
This commit is contained in:
@@ -148,7 +148,7 @@ namespace DiscImageChef.Core.Devices
|
|||||||
sense = dev.Seek(out errorLba, 0, timeout, out duration);
|
sense = dev.Seek(out errorLba, 0, timeout, out duration);
|
||||||
ataSeekLba = (!sense && (errorLba.status & 0x27) == 0 && errorChs.error == 0);
|
ataSeekLba = (!sense && (errorLba.status & 0x27) == 0 && errorChs.error == 0);
|
||||||
|
|
||||||
if(!lbaMode)
|
if(lbaMode)
|
||||||
{
|
{
|
||||||
if(blocks > 0xFFFFFFF && !ataReadLba48 && !ataReadDmaLba48)
|
if(blocks > 0xFFFFFFF && !ataReadLba48 && !ataReadDmaLba48)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user