Merge branch 'master' into doc-menu

This commit is contained in:
GriffinR
2021-11-04 12:11:31 -04:00
committed by GitHub
53 changed files with 842 additions and 899 deletions

View File

@@ -1832,9 +1832,9 @@ u32 GetLinkRecvQueueLength(void)
return gLink.recvQueue.count;
}
bool32 IsLinkRecvQueueLengthAtLeast3(void)
bool32 IsLinkRecvQueueAtOverworldMax(void)
{
if (GetLinkRecvQueueLength() > 2)
if (GetLinkRecvQueueLength() >= OVERWORLD_RECV_QUEUE_MAX)
return TRUE;
return FALSE;