diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-10 11:11:47 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-10 11:11:47 -0400 |
commit | fd66e154646d4d88bffd36a2b7d207f383328faa (patch) | |
tree | cd7f950af542ecbaf39fc8bf4d6e3c3d8722a63f /include | |
parent | 61a06dffe79d03c0d57f70db646655c74af7147a (diff) |
Address review comments, 2
Diffstat (limited to 'include')
-rw-r--r-- | include/link.h | 2 | ||||
-rw-r--r-- | include/link_rfu.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/link.h b/include/link.h index 899f0cb03..6329c197b 100644 --- a/include/link.h +++ b/include/link.h @@ -277,7 +277,7 @@ void ClearLinkCallback_2(void); void LinkRfu_SetRfuFuncToSend6600(void); void IntlConvertLinkPlayerName(struct LinkPlayer * linkPlayer); bool8 IsWirelessAdapterConnected(void); -bool8 sub_800A474(u8 blockRequestType); +bool8 Link_PrepareCmd0xCCCC_Rfu0xA100(u8 blockRequestType); void LinkVSync(void); bool8 HandleLinkConnection(void); void PrepareLocalLinkPlayerBlock(void); diff --git a/include/link_rfu.h b/include/link_rfu.h index 31075be77..07a5346ad 100644 --- a/include/link_rfu.h +++ b/include/link_rfu.h @@ -127,7 +127,7 @@ typedef struct UnkRfuStruct_2 /* 0x010 */ u16 linkman_param[2]; /* 0x014 */ u8 unk_14[RFU_CHILD_MAX][14]; /* 0x04c */ u8 unk_4c[14]; - /* 0x05a */ u8 unk_5a; + /* 0x05a */ u8 cmdA100_blockRequestType; /* 0x05b */ u8 unk_5b; /* 0x05c */ u8 unk_5c[5]; /* 0x061 */ u8 unk_61[5]; @@ -139,7 +139,7 @@ typedef struct UnkRfuStruct_2 /* 0x0e4 */ u8 cmd5f00Ack[5]; /* 0x0e9 */ u8 cmd_6600_recvd[5]; /* 0x0ee */ vu8 errorState; - /* 0x0ef */ u8 unk_ef; + /* 0x0ef */ u8 isShuttingDown; /* 0x0f0 */ u8 linkLossRecoveryState; /* 0x0f1 */ u8 unk_f1; /* 0x0f2 */ u16 unk_f2[6]; @@ -207,7 +207,7 @@ u8 GetRfuPlayerCount(void); void StartSendingKeysToRfu(void); u8 LinkRfu_GetMultiplayerId(void); bool32 Rfu_InitBlockSend(const u8 * src, size_t size); -bool8 sub_80FA0F8(u8 a0); +bool8 LinkRfu_PrepareCmd0xA100(u8 blockRequestType); u8 Rfu_GetBlockReceivedStatus(void); void Rfu_SetBlockReceivedFlag(u8 who); void Rfu_ResetBlockReceivedFlag(u8 who); |