diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-04 12:11:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 12:11:31 -0400 |
commit | be7d0bd3b02727affddb422bdd868f2d219fe181 (patch) | |
tree | 2a888fe548d140e37456f6916075cc963fb51cee /src/link.c | |
parent | 17b657d83a29919253675b06c12a9ea5471385b2 (diff) | |
parent | 7940f121f66bb0ebe0932bc642c3d9b4015f79a7 (diff) |
Merge branch 'master' into doc-menu
Diffstat (limited to 'src/link.c')
-rw-r--r-- | src/link.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/link.c b/src/link.c index 3380514e1..01cc06e7c 100644 --- a/src/link.c +++ b/src/link.c @@ -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; |