mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Samples are 4 bytes.
This commit is contained in:
@@ -1466,15 +1466,15 @@ namespace DiscImageChef.Core.Devices.Dumping
|
||||
{
|
||||
if(offsetFound)
|
||||
{
|
||||
_dumpLog.WriteLine($"Disc offsets is {offsetBytes - (cdOffset.Offset * 2 * -1)}");
|
||||
UpdateStatus?.Invoke($"Disc offsets is {offsetBytes - (cdOffset.Offset * 2 * -1)}");
|
||||
_dumpLog.WriteLine($"Disc offsets is {offsetBytes - (cdOffset.Offset * 4 * -1)}");
|
||||
UpdateStatus?.Invoke($"Disc offsets is {offsetBytes - (cdOffset.Offset * 4 * -1)}");
|
||||
}
|
||||
else
|
||||
{
|
||||
_dumpLog.WriteLine("Disc write offset is unknown, dump may not be correct.");
|
||||
UpdateStatus?.Invoke("Disc write offset is unknown, dump may not be correct.");
|
||||
|
||||
offsetBytes = cdOffset.Offset * 2 * -1;
|
||||
offsetBytes = cdOffset.Offset * 4 * -1;
|
||||
}
|
||||
|
||||
_dumpLog.WriteLine($"Offset is {offsetBytes} bytes.");
|
||||
|
||||
Reference in New Issue
Block a user