mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2025-02-09 13:14:46 +01:00
Fix NcaFsHeader reading
This commit is contained in:
parent
f583d01248
commit
723ffe5550
@ -96,6 +96,7 @@ namespace libhac
|
||||
public Pfs0Superblock Pfs0;
|
||||
public RomfsSuperblock Romfs;
|
||||
public BktrSuperblock Bktr;
|
||||
public ulong Ctr;
|
||||
|
||||
public NcaFsHeader(BinaryReader reader)
|
||||
{
|
||||
@ -124,6 +125,9 @@ namespace libhac
|
||||
Romfs = new RomfsSuperblock(reader);
|
||||
}
|
||||
}
|
||||
|
||||
Ctr = reader.ReadUInt64();
|
||||
reader.BaseStream.Position += 184;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user