Update ReadSector and ReadSectors methods to include sector status output

This commit is contained in:
2025-10-22 14:28:58 +01:00
parent 1003088cc3
commit 0ac2a48fb6
238 changed files with 5881 additions and 5196 deletions

View File

@@ -54,7 +54,7 @@ public sealed partial class extFS
if(sbSectorOff + partition.Start >= partition.End) return false;
ErrorNumber errno = imagePlugin.ReadSector(sbSectorOff + partition.Start, out byte[] sbSector);
ErrorNumber errno = imagePlugin.ReadSector(sbSectorOff + partition.Start, out byte[] sbSector, out _);
if(errno != ErrorNumber.NoError) return false;
@@ -85,7 +85,7 @@ public sealed partial class extFS
if(sbSectorOff + partition.Start >= partition.End) return;
ErrorNumber errno = imagePlugin.ReadSector(sbSectorOff + partition.Start, out byte[] sblock);
ErrorNumber errno = imagePlugin.ReadSector(sbSectorOff + partition.Start, out byte[] sblock, out _);
if(errno != ErrorNumber.NoError) return;