diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-02 17:35:44 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-03-02 17:35:44 -0500 |
commit | 9372731c3ef1ac5f7ed59a85b071bde7b87d2460 (patch) | |
tree | 3122377a548140355ae1a3350212cc52827bc9ac /src/menu_helpers.c | |
parent | 3716da5430a976d05afecdf82f43f14fc2584949 (diff) | |
parent | 043071ae12aa6854119a44304a5facbd58fa3624 (diff) |
Merge branch 'master' into main-menu-state-machine
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 49da6bda3..25058abf9 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; |