diff options
author | huderlem <huderlem@gmail.com> | 2019-03-01 08:43:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 08:43:55 -0600 |
commit | 3b04cfa437b093a21cdc5021843b5f52a124861e (patch) | |
tree | 1e1e832d7852953a68d0d949dcb9fba61164e37c /src/menu_helpers.c | |
parent | da0687987d8d4f6cb9a331f30553ffb806e74165 (diff) | |
parent | 459fd93b59795c0c9c888584d38e82577e07c056 (diff) |
Merge pull request #551 from Phlosioneer/multiplayer-stuff
Document overworld.c and link stuff in general
Diffstat (limited to 'src/menu_helpers.c')
-rw-r--r-- | src/menu_helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu_helpers.c b/src/menu_helpers.c index e6547b300..846c23b6b 100644 --- a/src/menu_helpers.c +++ b/src/menu_helpers.c @@ -293,7 +293,7 @@ bool8 sub_8122148(u16 itemId) bool8 itemid_80BF6D8_mail_related(u16 itemId) { - if (is_c1_link_related_active() != TRUE && InUnionRoom() != TRUE) + if (IsUpdateLinkStateCBActive() != TRUE && InUnionRoom() != TRUE) return TRUE; else if (ItemIsMail(itemId) != TRUE) return TRUE; @@ -303,7 +303,7 @@ bool8 itemid_80BF6D8_mail_related(u16 itemId) bool8 sub_81221AC(void) { - if (is_c1_link_related_active() == TRUE || gReceivedRemoteLinkPlayers == 1) + if (IsUpdateLinkStateCBActive() == TRUE || gReceivedRemoteLinkPlayers == 1) return TRUE; else return FALSE; |