mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +01:00
Add some missing fields in FSStat.
This commit is contained in:
parent
a5053a2a1a
commit
bc9ececcc1
@ -162,7 +162,8 @@ struct WUT_PACKED FSStat
|
||||
uint32_t owner;
|
||||
uint32_t group;
|
||||
uint32_t size;
|
||||
WUT_UNKNOWN_BYTES(0xC);
|
||||
uint32_t allocSize;
|
||||
uint64_t quotaSize;
|
||||
uint32_t entryId;
|
||||
int64_t created;
|
||||
int64_t modified;
|
||||
@ -173,6 +174,8 @@ WUT_CHECK_OFFSET(FSStat, 0x04, mode);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x08, owner);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x0C, group);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x10, size);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x14, allocSize);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x18, quotaSize);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x20, entryId);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x24, created);
|
||||
WUT_CHECK_OFFSET(FSStat, 0x2C, modified);
|
||||
|
@ -107,7 +107,6 @@ WUT_CHECK_OFFSET(VPADVec3D, 0x04, y);
|
||||
WUT_CHECK_OFFSET(VPADVec3D, 0x08, z);
|
||||
WUT_CHECK_SIZE(VPADVec3D, 0x0C);
|
||||
|
||||
|
||||
struct VPADDirection
|
||||
{
|
||||
VPADVec3D x;
|
||||
|
Loading…
Reference in New Issue
Block a user