mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Naming fixes.
This commit is contained in:
@@ -72,8 +72,8 @@ namespace Aaru.Filesystems
|
||||
Encoding = Encoding.GetEncoding("shift_jis");
|
||||
information = "";
|
||||
|
||||
byte[] sector = imagePlugin.ReadSectors(partition.Start, 2);
|
||||
PcfxHeader header = Marshal.ByteArrayToStructureLittleEndian<PcfxHeader>(sector);
|
||||
byte[] sector = imagePlugin.ReadSectors(partition.Start, 2);
|
||||
Header header = Marshal.ByteArrayToStructureLittleEndian<Header>(sector);
|
||||
|
||||
string date;
|
||||
DateTime dateTime = DateTime.MinValue;
|
||||
@@ -127,7 +127,7 @@ namespace Aaru.Filesystems
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct PcfxHeader
|
||||
struct Header
|
||||
{
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
|
||||
public readonly byte[] signature;
|
||||
|
||||
Reference in New Issue
Block a user