mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix length when writing subchannel.
This commit is contained in:
@@ -74,9 +74,9 @@ namespace Aaru.Core.Devices.Dumping
|
||||
sub = Subchannel.ConvertQToRaw(sub);
|
||||
|
||||
if(desiredSubchannel != MmcSubchannel.None)
|
||||
_outputPlugin.WriteSectorsTag(sub, sectorAddress, 1, SectorTagType.CdSectorSubchannel);
|
||||
_outputPlugin.WriteSectorsTag(sub, sectorAddress, length, SectorTagType.CdSectorSubchannel);
|
||||
|
||||
subLog?.WriteEntry(sub, supportedSubchannel == MmcSubchannel.Raw, (long)sectorAddress, 1);
|
||||
subLog?.WriteEntry(sub, supportedSubchannel == MmcSubchannel.Raw, (long)sectorAddress, length);
|
||||
|
||||
byte[] deSub = Subchannel.Deinterleave(sub);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user