diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-03-18 15:25:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 15:25:46 -0400 |
commit | ed16a7409ae9c808a110975dec1930f9f949a6d6 (patch) | |
tree | 662be8b474b9c50264fc49262cbaf21769479516 /src/easy_chat.c | |
parent | 5075067ecd8718ab96a063946662c71fe3ef5369 (diff) | |
parent | c5aa5d37229e5692355e4b3979b6cafbcad7caee (diff) |
Merge pull request #403 from PikalaxALT/battle_multi_buffer
Battle documentation (14032021)
Diffstat (limited to 'src/easy_chat.c')
-rw-r--r-- | src/easy_chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/easy_chat.c b/src/easy_chat.c index bf617a854..4360dc72e 100644 --- a/src/easy_chat.c +++ b/src/easy_chat.c @@ -704,7 +704,7 @@ static bool8 UnlockedECMonOrMove(u16 wordIndex, u8 groupId) static bool32 EC_IsDeoxys(u16 species) { u32 i; - for (i = 0; i < ARRAY_COUNT(sDeoxysValue); i++) + for (i = 0; i < NELEMS(sDeoxysValue); i++) { if (sDeoxysValue[i] == species) return TRUE; |