mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: All refactor in DiscImageChef.Partitions.
This commit is contained in:
@@ -72,11 +72,13 @@ namespace DiscImageChef.Partitions
|
||||
|
||||
byte[] sector = imagePlugin.ReadSector(sectorOffset);
|
||||
|
||||
AtariTable table = new AtariTable();
|
||||
table.boot = new byte[342];
|
||||
table.icdEntries = new AtariEntry[8];
|
||||
table.unused = new byte[12];
|
||||
table.entries = new AtariEntry[4];
|
||||
AtariTable table = new AtariTable
|
||||
{
|
||||
boot = new byte[342],
|
||||
icdEntries = new AtariEntry[8],
|
||||
unused = new byte[12],
|
||||
entries = new AtariEntry[4]
|
||||
};
|
||||
|
||||
Array.Copy(sector, 0, table.boot, 0, 342);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user