diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-01 18:06:15 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-02 18:06:06 -0400 |
commit | afb9ff3a40dcfb2681ef274752bceb726d14b783 (patch) | |
tree | 4e41abebf769019ead392d3fa0034df04b796d79 /src/link.c | |
parent | c98fbb5ca6edf4f2bb3d2eada318082051f0849d (diff) |
Document files with a few remaining symbols
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 8ba7610cc..f5eb8b68c 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; |