Skip to content

Commit

Permalink
coreinit: Update FSCmdBlockBody struct to include asyncResult
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell authored and fincs committed Jul 24, 2022
1 parent 309deef commit 1ebadb1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions include/coreinit/filesystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,6 @@ struct FSClient
};
WUT_CHECK_SIZE(FSClient, 0x1700);

struct FSCmdBlockBody
{
WUT_UNKNOWN_BYTES(0x9F8);
};
WUT_CHECK_SIZE(FSCmdBlockBody, 0x9F8);

struct FSCmdBlock
{
WUT_UNKNOWN_BYTES(0xA80);
Expand Down Expand Up @@ -399,6 +393,15 @@ WUT_CHECK_OFFSET(FSAsyncResult, 0x20, block);
WUT_CHECK_OFFSET(FSAsyncResult, 0x24, status);
WUT_CHECK_SIZE(FSAsyncResult, 0x28);

struct FSCmdBlockBody
{
WUT_UNKNOWN_BYTES(0x96C);
FSAsyncResult asyncResult;
WUT_UNKNOWN_BYTES(0x68);
};
WUT_CHECK_OFFSET(FSCmdBlockBody, 0x96C, asyncResult);
WUT_CHECK_SIZE(FSCmdBlockBody, 0x9FC);

struct FSDirectoryEntry
{
FSStat info;
Expand Down

0 comments on commit 1ebadb1

Please sign in to comment.