mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
General refactor.
This commit is contained in:
@@ -51,13 +51,11 @@ namespace DiscImageChef.Filesystems
|
||||
{
|
||||
if(2 + partition.Start >= partition.End) return false;
|
||||
|
||||
byte signature; // 0x29
|
||||
|
||||
byte[] bpb = imagePlugin.ReadSector(0 + partition.Start);
|
||||
|
||||
byte[] fsTypeB = new byte[8];
|
||||
|
||||
signature = bpb[0x25];
|
||||
byte signature = bpb[0x25];
|
||||
Array.Copy(bpb, 0x35, fsTypeB, 0, 8);
|
||||
string fsType = StringHandlers.CToString(fsTypeB);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user