mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 20:06:41 +01:00
WiiUtils: Be more explicit about packing.
This commit is contained in:
parent
bb0794715c
commit
47f7e5b454
@ -561,7 +561,7 @@ public:
|
|||||||
UpdateResult DoDiscUpdate();
|
UpdateResult DoDiscUpdate();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
#pragma pack(push, 8)
|
#pragma pack(push, 1)
|
||||||
struct ManifestHeader
|
struct ManifestHeader
|
||||||
{
|
{
|
||||||
char timestamp[0x10]; // YYYY/MM/DD
|
char timestamp[0x10]; // YYYY/MM/DD
|
||||||
@ -581,9 +581,10 @@ private:
|
|||||||
char path[0x40];
|
char path[0x40];
|
||||||
u64 title_id;
|
u64 title_id;
|
||||||
u16 title_version;
|
u16 title_version;
|
||||||
|
u16 unused1[3];
|
||||||
char name[0x40];
|
char name[0x40];
|
||||||
char info[0x40];
|
char info[0x40];
|
||||||
u8 unused[0x120];
|
u8 unused2[0x120];
|
||||||
};
|
};
|
||||||
static_assert(sizeof(Entry) == 512, "Wrong size");
|
static_assert(sizeof(Entry) == 512, "Wrong size");
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user