diff options
author | YamaArashi <shadow962@live.com> | 2016-10-29 22:56:19 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-10-29 22:56:19 -0700 |
commit | b86183aecd4e7e264158cd6cdb5e1332c41d4340 (patch) | |
tree | 57e87c34002d9123e551b4a0dfa62ca3f78ca96c /src | |
parent | ad7aa68d9b9b5bc388f1b391dd4754889c29e3a9 (diff) |
fix typo in function name
Diffstat (limited to 'src')
-rw-r--r-- | src/link.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/link.c b/src/link.c index 3f4ffe97d..2a412ee35 100644 --- a/src/link.c +++ b/src/link.c @@ -370,7 +370,7 @@ static void TestBlockTransfer(u32 a1, u32 a2, u32 a3) } } - val = GetBlockRecievedStatus(); + val = GetBlockReceivedStatus(); if (val == 0xF) { @@ -889,7 +889,7 @@ bool8 sub_8007ECC(void) return retVal; } -u8 GetBlockRecievedStatus(void) +u8 GetBlockReceivedStatus(void) { return (gBlockReceived[3] << 3) | (gBlockReceived[2] << 2) @@ -975,7 +975,7 @@ void Task_PrintTestData(u8 taskId) PrintHex(GetMultiplayerId(), 15, 12, 2); PrintHex(gLastSendQueueCount, 25, 1, 2); PrintHex(gLastRecvQueueCount, 25, 2, 2); - PrintHex(GetBlockRecievedStatus(), 15, 5, 2); + PrintHex(GetBlockReceivedStatus(), 15, 5, 2); PrintHex(gLinkDebugValue1, 2, 12, 8); PrintHex(gLinkDebugValue2, 2, 13, 8); PrintHex(GetSioMultiSI(), 25, 5, 1); |