Skip to content

Commit

Permalink
Add typedef for FSACommandEnum
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Feb 18, 2023
1 parent ad061bd commit d1c9903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/coreinit/filesystem_fsa.h
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ WUT_CHECK_OFFSET(FSAResponse, 0x0, word0);
WUT_CHECK_OFFSET(FSAResponse, 0x4, rawOpen);
WUT_CHECK_SIZE(FSAResponse, 0x293);

enum FSACommandEnum {
typedef enum FSACommandEnum {
FSA_COMMAND_INVALID = 0x0,
FSA_COMMAND_MOUNT = 0x1,
FSA_COMMAND_UNMOUNT = 0x2,
Expand Down Expand Up @@ -793,7 +793,7 @@ enum FSACommandEnum {
FSA_COMMAND_GET_PROC_RESOURCE_USAGE = 0x8C,
FSA_COMMAND_GET_ALL_RESOURCE_USAGE = 0x8D,
FSA_COMMAND_SEND_PROFILE_CMD = 0x8E,
};
} FSACommandEnum;
WUT_CHECK_SIZE(FSACommandEnum, 4);

enum FSAIpcRequestTypeEnum {
Expand Down

0 comments on commit d1c9903

Please sign in to comment.