diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-06-17 14:29:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 14:29:28 -0400 |
commit | 780da6bfd08b5401a7e11f1e0d38e377f2fab3dd (patch) | |
tree | ecda9f9dde7de862d5fc63c7689c8f224661ad0d /src | |
parent | 69fb670955664f9f936f7b85667238546d43fa40 (diff) | |
parent | fd55a0d0154242f155afd2981d64f3156d92d53d (diff) |
Merge pull request #1466 from Sewef/patch-1
Fix sATypeMove_Table definition
Diffstat (limited to 'src')
-rw-r--r-- | src/battle_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_message.c b/src/battle_message.c index 7ef5fe321..ae30a2a62 100644 --- a/src/battle_message.c +++ b/src/battle_message.c @@ -1328,7 +1328,7 @@ static const u8 sText_SpaceIs[] = _(" is"); static const u8 sText_ApostropheS[] = _("'s"); // For displaying names of invalid moves -static const u8 sATypeMove_Table[][NUMBER_OF_MON_TYPES - 1] = +static const u8 sATypeMove_Table[NUMBER_OF_MON_TYPES][17] = { [TYPE_NORMAL] = _("a NORMAL move"), [TYPE_FIGHTING] = _("a FIGHTING move"), |