Fix: NCSD header struct too big

This commit is contained in:
d0k3 2017-01-14 12:41:34 +01:00
parent fa9a2c2fb5
commit b00fb89164

View File

@ -29,7 +29,7 @@ typedef struct {
u8 sector_zero_offset[0x4];
u8 partition_flags[8];
u8 partitionId_table[8][8];
u8 reserved[0x40];
u8 reserved[0x30];
} __attribute__((packed)) NcsdHeader;
u32 ValidateNcsdHeader(NcsdHeader* header);